Advertisement
Guest User

Untitled

a guest
Nov 28th, 2014
175
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. @for $i from 1 through 25 {
  2. $row = abs($i / 5 - 2);
  3. $col = abs($i % 5 - 2);
  4. $delay = $row * $col;
  5. .element:nth-child(#{$i}) {
  6. -webkit-animation-delay:(#{$delay*0.05s});
  7. animation-delay:(#{$delay*0.05s});
  8. }
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement