Skip to content

Instantly share code, notes, and snippets.

@yellowberri-snippets
Last active March 14, 2017 15:26
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save yellowberri-snippets/8918967 to your computer and use it in GitHub Desktop.
Save yellowberri-snippets/8918967 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