Created
April 18, 2015 07:39
-
-
Save airen/45bc1d0a9a795c91525f 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
// ---- | |
// Sass (v3.4.12) | |
// Compass (v1.0.3) | |
// ---- | |
@keyframes animation{ | |
@for $i from 1 through 5 { | |
$test: $i * 20%; | |
#{$test} { | |
background: url(images/bg-#{$i}.png); | |
} | |
} | |
} |
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
@keyframes animation { | |
20% { | |
background: url(images/bg-1.png); | |
} | |
40% { | |
background: url(images/bg-2.png); | |
} | |
60% { | |
background: url(images/bg-3.png); | |
} | |
80% { | |
background: url(images/bg-4.png); | |
} | |
100% { | |
background: url(images/bg-5.png); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment