Skip to content

Instantly share code, notes, and snippets.

@chriswrightdesign
Created November 20, 2013 02:39
Show Gist options
  • Save chriswrightdesign/7556702 to your computer and use it in GitHub Desktop.
Save chriswrightdesign/7556702 to your computer and use it in GitHub Desktop.
Sass for loop example with nth-of-child animation
@for $i from 1 throught 6 {
.box:nth-of-type(#{$i}) {
-webkit-animation-delay: $i * 0.25s;
-moz-animation-delay:$i * 0.25s;
animation-delay:$i * 0.25s;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment