Skip to content

Instantly share code, notes, and snippets.

@jlittlejohn
Created December 12, 2013 15:47
Show Gist options
  • Save jlittlejohn/7930105 to your computer and use it in GitHub Desktop.
Save jlittlejohn/7930105 to your computer and use it in GitHub Desktop.
SCSS: Animation (Mixin)
@mixin animation($content) {
-webkit-animation: $content;
-moz-animation: $content;
-ms-animation: $content;
-o-animation: $content;
animation: $content;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment