Last active
August 29, 2015 14:14
-
-
Save rustyeddy/9ec3fb90fad6b29fde43 to your computer and use it in GitHub Desktop.
Animation Gists see Animate.css for some really cool stuff.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@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