JavaScript preprocessors can help make authoring JavaScript easier and more convenient. For instance, CoffeeScript can help prevent easy-to-make mistakes and offer a cleaner syntax and Babel can bring ECMAScript 6 features to browsers that only support ECMAScript 5.
Any URL's added here will be added as <script>
s in order, and run before the JavaScript in the editor. You can use the URL of any other Pen and it will include the JavaScript from that Pen.
You can apply a script from anywhere on the web to your Pen. Just put a URL to it here and we'll add it, in the order you have them, before the JavaScript in the Pen itself.
If the script you link to has the file extension of a preprocessor, we'll attempt to process it before applying.
You can also link to another Pen here, and we'll pull the JavaScript from that Pen and include it. If it's using a matching preprocessor, we'll combine the code before preprocessing, so you can use the linked Pen as a true dependency.
HTML Settings
Here you can Sed posuere consectetur est at lobortis. Donec ullamcorper nulla non metus auctor fringilla. Maecenas sed diam eget risus varius blandit sit amet non magna. Donec id elit non mi porta gravida at eget metus. Praesent commodo cursus magna, vel scelerisque nisl consectetur et.
div.test-scss-color.add-color
span add-color
div.test-scss-color.normal
span normal
div.test-scss-color.darken
span darken
div.test-scss-color.lighten
span lighten
div.test-scss-color.saturate
span saturate
div.test-scss-color.desaturate
span desaturate
div.test-scss-color.complement
span complement
div.test-scss-color.invert
span invert
div.test-scss-color.adjust-hue
span adjust-hue
div.test-scss-color.adjust-hue-deg
span adjust-hue deg
div.test-scss-color.adjust-hue-minusdeg
span adjust-hue -deg
div.test-scss-color.grayscale
span grayscale
div.test-scss-color.rgba
span rgba
div.test-scss-color.mix
span mix
$base-color: #edd05f;
$add-color: #3cb4aa;
body{
background: #134d72;
}
.test-scss-color {
width: 150px;
display: inline-block;
color: #134d72;
padding: 1.5rem;
text-align: center;
margin-bottom: 1.5rem;
&.normal {
background: $base-color;
}
&.add-color {
background: $add-color;
}
&.darken {
background: darken($base-color, 20);
}
&.lighten {
background: lighten($base-color, 20);
}
&.saturate {
background: saturate($base-color, 20%);
}
&.desaturate {
background: desaturate($base-color, 20%);
}
&.complement {
background: complement($base-color);
}
&.invert {
background: invert($base-color);
color: #fff;
}
&.adjust-hue {
background: adjust-hue($base-color, 45%);
}
&.adjust-hue-deg {
background: adjust-hue($base-color, 80deg);
}
&.adjust-hue-minusdeg {
background: adjust-hue($base-color, -80deg);
}
&.grayscale {
background: grayscale($base-color);
}
&.hsla {
background: hsla(34, 35%, 92%, 0.7);
}
&.rgba {
background: rgba($base-color, 0.7);
}
&.opacify {
background: opacify(rgba($base-color, 0.7), 0.3);
}
&.fade-out {
background: fade-out(rgba($base-color, 0.5), 0.4);
}
&.transparentize {
background: transparentize(rgba($base-color, 0.3), 0.3);
}
&.mix {
background: mix($base-color, $add-color, 70);
}
&.adjust-color {
background: adjust-color(#998099, $lightness: -30%, $alpha: -0.4);
}
&.scale-color {
background: scale-color(#998099, $alpha: -40%);
}
&.change-color {
background: change-color(#998099, $lightness: 30%, $alpha: 0.5);
}
}
Also see: Tab Triggers