Skip to content

Instantly share code, notes, and snippets.

@rnmp
Created June 1, 2011 12:37
Show Gist options
  • Save rnmp/1002209 to your computer and use it in GitHub Desktop.
Save rnmp/1002209 to your computer and use it in GitHub Desktop.
Zoom in CSS3 animation
@-webkit-keyframes roll-action {
0% {
-webkit-transform: scale(2);
opacity: 0; }
100% {
-webkit-transform: scale(1);
opacity: 1; } }
span.roll-result {
-webkit-animation: roll-action 0.25s; }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment