Skip to content

Instantly share code, notes, and snippets.

@oknoway
Created January 28, 2014 17:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save oknoway/8672020 to your computer and use it in GitHub Desktop.
Save oknoway/8672020 to your computer and use it in GitHub Desktop.
// keyframes mixin
// usage:
// @include keyframes(bgcolor) {
// 0% {
// background-color: #ffccf2;
// }
// 50% {
// background-color: #ccffcc;
// }
// 100% {
// background-color: #ccffff;
// }
// }
@mixin keyframes($name) {
@-webkit-keyframes #{$name} {
@content;
}
@-moz-keyframes #{$name} {
@content;
}
@-ms-keyframes #{$name} {
@content;
}
@keyframes #{$name} {
@content;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment