Skip to content

Instantly share code, notes, and snippets.

@laurendorman
Created March 18, 2016 07:05
Show Gist options
  • Save laurendorman/d65706fb051a02f82c2b to your computer and use it in GitHub Desktop.
Save laurendorman/d65706fb051a02f82c2b to your computer and use it in GitHub Desktop.
Sass Mixins - Keyframe Animation Mixin
@mixin keyframes($animation) {
@-webkit-keyframes #{$animation} {
@content;
}
@-moz-keyframes #{$animation} {
@content;
}
@-o-keyframes #{$animation} {
@content;
}
@keyframes #{$animation} {
@content;
}
}
@include keyframes(my-animation-name) {
0% {
background-color: yellow;
}
50% {
background-color: red;
}
100% {
background-color: blue;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment