Created
November 20, 2013 02:39
-
-
Save chriswrightdesign/7556702 to your computer and use it in GitHub Desktop.
Sass for loop example with nth-of-child animation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@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