Created
June 7, 2015 02:13
-
-
Save liushooter/ad516d2e45767542420a to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
This file contains hidden or 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
// ---- | |
// 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); | |
} |
This file contains hidden or 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
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