Forked from yellowberri-snippets/SASS: Animation Delay For Loop
Created
March 14, 2017 15:26
-
-
Save jasonmelgoza/3c22bfb39ee51e90f18fd2f3d5be15ed 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