Last active
March 14, 2017 15:26
-
-
Save yellowberri-snippets/8918967 to your computer and use it in GitHub Desktop.
SASS: Animation Delay For Loop
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 30 { | |
&:nth-of-type(#{$i}) { | |
@include transition-delay(#{$i * 100}ms); | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment