Skip to content

Instantly share code, notes, and snippets.

@rustyeddy
Last active August 29, 2015 14:14
Show Gist options
  • Save rustyeddy/9ec3fb90fad6b29fde43 to your computer and use it in GitHub Desktop.
Save rustyeddy/9ec3fb90fad6b29fde43 to your computer and use it in GitHub Desktop.
Animation Gists see Animate.css for some really cool stuff.
@mixin zoomInDown( $args )
{
-webkit-animation: zoomInDown $args;
-moz-animation: zoomInDown $args;
animation: zoomInDown $args;
}
@mixin zoomOutDown( $args )
{
-webkit-animation: zoomOutDown $args;
-moz-animation: zoomOutDown $args;
animation: zoomOutDown $args;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment