Skip to content

Instantly share code, notes, and snippets.

Created February 17, 2014 22:32
Show Gist options
  • Save anonymous/9060562 to your computer and use it in GitHub Desktop.
Save anonymous/9060562 to your computer and use it in GitHub Desktop.
A Pen by A Non Ymous.
#loading
- (1..10).each do
%p
body{
text-align:center;
background:#34aadc;
}
#loading{
width:200px;
height:100px;
margin:100px auto;
}
p{
height:80px;
width:6px;
background:#fff;
display:inline-block;
animation:loader 1.3s infinite;
}
@keyframes loader{
50% { height:6px; margin-top:74px; opacity:.1; }
}
p:nth-child(1) {animation-delay:.1s;}
p:nth-child(2) {animation-delay:.2s;}
p:nth-child(3) {animation-delay:.3s;}
p:nth-child(4) {animation-delay:.4s;}
p:nth-child(5) {animation-delay:.5s;}
p:nth-child(6) {animation-delay:.6s;}
p:nth-child(7) {animation-delay:.7s;}
p:nth-child(8) {animation-delay:.8s;}
p:nth-child(9) {animation-delay:.9s;}
p:nth-child(10){animation-delay:1s;}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment