Skip to content

Instantly share code, notes, and snippets.

@painejake
Created July 10, 2013 09:38
Show Gist options
  • Save painejake/5964917 to your computer and use it in GitHub Desktop.
Save painejake/5964917 to your computer and use it in GitHub Desktop.
Rotating Animation 1
@-webkit-keyframes spin {
from {
-webkit-transform: rotate(0deg);
}
to {
-webkit-transform: rotate(360deg);
}
}
@keyframes spin {
from {
transform: rotate(0deg)
}
to {
transform: rotate(360deg);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment