Skip to content

Instantly share code, notes, and snippets.

@lozandier
Last active November 14, 2015 20:27
Show Gist options
  • Save lozandier/836156f6b9596ecd65b0 to your computer and use it in GitHub Desktop.
Save lozandier/836156f6b9596ecd65b0 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.4.14)
// Compass (v1.0.3)
// ----
@mixin animation-keyframes() {
$uak: unique-id();
animation-name: $uak;
@keyframes #{$uak} {
@content
}
}
.some-element {
animation: 10s linear infinite;
@include animation-keyframes() {
from {
background-position: 0% 0%;
}
to {
background-position: 114.2857% 0%;
}
}
}
.some-element {
animation: 10s linear infinite;
animation-name: uw8s4e8zb;
}
@keyframes uw8s4e8zb {
from {
background-position: 0% 0%;
}
to {
background-position: 114.2857% 0%;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment