Created
May 23, 2012 17:15
-
-
Save parrfolio/2776455 to your computer and use it in GitHub Desktop.
CSS3 Animation Template
This file contains 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
foo { | |
animation-name: spin; | |
animation-duration: 3s; | |
animation-timing-function: ease | linear | ease-in | ease-out | ease-in-out | step-start | step-end | steps(10,start | end) | cubic-bezier(<number>, <number>, <number>, <number>); | |
animation-delay: 3s; | |
animation-iteration-count: infinite | 10; | |
animation-direction: alternate | normal; | |
animation-fill-mode: forward | backwards | both | none; | |
animation-play-state: running | paused; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment