Skip to content

Instantly share code, notes, and snippets.

@liushooter
Created June 7, 2015 02:13
Show Gist options
  • Save liushooter/ad516d2e45767542420a to your computer and use it in GitHub Desktop.
Save liushooter/ad516d2e45767542420a to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// libsass (v3.2.4)
// ----
//定義方法 animation-delay-n
@mixin animation-delay-seconds($n){
&:nth-child(#{$n}){
animation-delay: #{$n*2}s;
}
}
div {
@include animation-delay-seconds(1);
@include animation-delay-seconds(3);
@include animation-delay-seconds(5);
}
div:nth-child(1) {
animation-delay: 2s;
}
div:nth-child(3) {
animation-delay: 6s;
}
div:nth-child(5) {
animation-delay: 10s;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment