Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jasonmelgoza/3c22bfb39ee51e90f18fd2f3d5be15ed to your computer and use it in GitHub Desktop.
Save jasonmelgoza/3c22bfb39ee51e90f18fd2f3d5be15ed to your computer and use it in GitHub Desktop.
SASS: Animation Delay For Loop
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