Last active
November 14, 2015 20:27
-
-
Save lozandier/836156f6b9596ecd65b0 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.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%; | |
} | |
} | |
} |
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
.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