Skip to content

Instantly share code, notes, and snippets.

@Ahrengot
Last active December 1, 2016 20:02
Show Gist options
  • Save Ahrengot/6400018 to your computer and use it in GitHub Desktop.
Save Ahrengot/6400018 to your computer and use it in GitHub Desktop.
Staggered animation using SASS & Compass
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