Skip to content

Instantly share code, notes, and snippets.

@kayluhb
Created February 26, 2012 01:37
Show Gist options
  • Save kayluhb/1912121 to your computer and use it in GitHub Desktop.
Save kayluhb/1912121 to your computer and use it in GitHub Desktop.
The best key frame animation ever.
@-webkit-keyframes killerdiller {
from { -webkit-transform: rotate(-45deg); }
to { -webkit-transform: rotate(360deg); }
}
body
{
-webkit-animation: killerdiller 0.5s infinite;
-webkit-animation-timing-function: linear;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment