Skip to content

Instantly share code, notes, and snippets.

@parrfolio
Created May 23, 2012 17:15
Show Gist options
  • Save parrfolio/2776455 to your computer and use it in GitHub Desktop.
Save parrfolio/2776455 to your computer and use it in GitHub Desktop.
CSS3 Animation Template
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