Skip to content

Instantly share code, notes, and snippets.

@unisys12
Created October 20, 2013 19:33
Show Gist options
  • Save unisys12/7074165 to your computer and use it in GitHub Desktop.
Save unisys12/7074165 to your computer and use it in GitHub Desktop.
@Keyframes mixin (SCSS)
@mixin keyframes( $animationName )
{
@-webkit-keyframes $animationName {
@content;
}
@-moz-keyframes $animationName {
@content;
}
@-o-keyframes $animationName {
@content;
}
@keyframes $animationName {
@content;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment