Skip to content

Instantly share code, notes, and snippets.

@airen
Created April 18, 2015 07:39
Show Gist options
  • Save airen/45bc1d0a9a795c91525f to your computer and use it in GitHub Desktop.
Save airen/45bc1d0a9a795c91525f to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// 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);
}
}
}
@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