Created
March 22, 2012 19:16
-
-
Save ikhattab/2162020 to your computer and use it in GitHub Desktop.
CSS:Keyframe Animation Syntax
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
@-webkit-keyframes NAME-YOUR-ANIMATION { | |
0% { opacity: 0; } | |
100% { opacity: 1; } | |
} | |
@-moz-keyframes NAME-YOUR-ANIMATION { | |
0% { opacity: 0; } | |
100% { opacity: 1; } | |
} | |
@-ms-keyframes NAME-YOUR-ANIMATION { | |
0% { opacity: 0; } | |
100% { opacity: 1; } | |
} | |
#box { | |
-webkit-animation: NAME-YOUR-ANIMATION 5s infinite; | |
-moz-animation: NAME-YOUR-ANIMATION 5s infinite; | |
-ms-animation: NAME-YOUR-ANIMATION 5s infinite; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment