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 class="wrapper">
<div class="loader">
<ul>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
</ul>
</div>
<p>It's worth the wait.</p>
</div>
@import "compass/css3";
* {box-sizing: border-box; }
body { background:#333 url(/images/classy_fabric.png); }
.wrapper {
width: 310px;
margin: 40px auto;
background: #353535;
background: linear-gradient(45deg, #151515, #383838);
padding: 20px;
border-radius: 0.5em;
border: 1px solid rgba(0,0,0,0.9);
position: relative;
box-shadow: 0 0 10px 3px rgba(0,0,0,0.4);
}
.wrapper:after {
content: "";
position: absolute;
height: 1px;
width: 96%;
background: white;
background: -moz-linear-gradient(left, #151515, #464647 5%, #fff 20%, #4a4a4a 70%);
background: -ms-linear-gradient(left, #151515, #464647 5%, #fff 20%, #4a4a4a 70%);
background: -o-linear-gradient(left, #151515, #464647 5%, #fff 20%, #4a4a4a 70%);
background: -webkit-gradient(linear, 0 0, 100% 0, from(#151515), color-stop(0.05, #464647), color-stop(0.2, #fff), color-stop(0.7, #4a4a4a));
background: -webkit-linear-gradient(left, #151515, #464647 5%, #fff 20%, #4a4a4a 70%);
background: linear-gradient(left, #151515, #464647 5%, #fff 20%, #4a4a4a 70%);
top: 0;
left: 2%;
}
.wrapper:before,
.loader:before{
content: "";
position: absolute;
width: 38px;
height: 1px;
background: -moz-linear-gradient(left, rgba(0,0,0,0), rgba(255,255,255,0.7), rgba(0,0,0,0));
background: -ms-linear-gradient(left, rgba(0,0,0,0), rgba(255,255,255,0.7), rgba(0,0,0,0));
background: -o-linear-gradient(left, rgba(0,0,0,0), rgba(255,255,255,0.7), rgba(0,0,0,0));
background: -webkit-gradient(linear, 0 0, 100% 0, from(rgba(0,0,0,0)), color-stop(0.5, rgba(255,255,255,0.7)), to(rgba(0,0,0,0)));
background: -webkit-linear-gradient(left, rgba(0,0,0,0), rgba(255,255,255,0.7), rgba(0,0,0,0));
background: linear-gradient(left, rgba(0,0,0,0), rgba(255,255,255,0.7), rgba(0,0,0,0));
top:-1px;
left: 15%;
}
.loader {
border-bottom: 1px solid rgba(0,0,0,0.4);
position: relative;
}
.loader:before {
top: -19px;
left: 10%;
}
.loader:after {
content: "";
position: absolute;
top: -21px;
left: 16.5%;
width: 3px;
height: 3px;
background: rgba(255,255,255,0);
border-radius: 50%;
box-shadow: 0 0 10px 5px rgba(255,255,255,0.2);
}
.wrapper p {
text-transform: uppercase;
color: white;
font-family:"HelveticaNeue-Light","Helvetica Neue Light","Helvetica Neue",Helvetica,Arial,"Lucida Grande",sans-serif;
font-weight:bold;
text-shadow: 0 -1px 0 black, 0 1px 0 rgba(#bdbdbd,0.2);
font-size: 15px;
text-align: center;
padding-top: 20px;
border-top: 1px solid rgba(255,255,255,0.1);
position: relative;
}
.wrapper p:after {
width: 220px;
height: 160px;
position: absolute;
content: "";
background: rgba(0,0,0,0.1);
background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.1));
bottom: -20px;
right: -20px;
border-radius: 100% 0 0.5em 0 / 100% 0 0.5em 0;
}
.loader li {
width: 8px;
height: 20px;
background: white;
border-radius: 30px;
position: absolute;
top: 40px;
left: 46px;
}
.loader ul {
animation: spinner 2s steps(12,end) infinite;
position: relative;
width: 100px;
height: 100px;
margin: 0 auto 20px auto;
}
.loader li:nth-child(1) {
transform:rotate(30deg) translate(0, -30px);
background:#fff;
}
.loader li:nth-child(2) {
transform:rotate(60deg) translate(0, -30px);
background:#e8e8e8;
}
.loader li:nth-child(3) {
transform:rotate(90deg) translate(0, -30px);
background:#dedede;
}
.loader li:nth-child(4) {
transform:rotate(120deg) translate(0, -30px);
background:#d2d2d2;
}
.loader li:nth-child(5) {
transform:rotate(150deg) translate(0, -30px);
background:#bdbdbd;
}
.loader li:nth-child(6) {
transform:rotate(180deg) translate(0, -30px);
background:#a3a3a3;
}
.loader li:nth-child(7) {
transform:rotate(210deg) translate(0, -30px);
background:#767676;
}
.loader li:nth-child(8) {
transform:rotate(240deg) translate(0, -30px);
background:#616161;
}
.loader li:nth-child(9) {
transform:rotate(270deg) translate(0, -30px);
background:#505050;
}
.loader li:nth-child(10) {
transform:rotate(300deg) translate(0, -30px);
background:#494949;
}
.loader li:nth-child(11) {
transform:rotate(330deg) translate(0, -30px);
background:#424242;
}
.loader li:nth-child(12) {
transform:rotate(0deg) translate(0, -30px);
background:#383838;
}
@keyframes spinner {
0% { transform: rotate(0deg) scale(0.6); }
100% { transform: rotate(-360deg) scale(0.6); }
}
Also see: Tab Triggers