Last active
December 1, 2016 20:02
-
-
Save Ahrengot/6400018 to your computer and use it in GitHub Desktop.
Staggered animation using SASS & Compass
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
li { | |
@for $i from 1 through 10 { | |
&:nth-child(#{$i}) { | |
@include experimental(animation-delay, #{$i * 0.2}s); | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment