Skip to content

Instantly share code, notes, and snippets.

@philippbosch
Created June 30, 2010 08:20
Show Gist options
  • Save philippbosch/458390 to your computer and use it in GitHub Desktop.
Save philippbosch/458390 to your computer and use it in GitHub Desktop.
@-webkit-keyframes my-animation {
0% {
-webkit-transform: rotate(0deg);
}
100% {
-webkit-transform: rotate(360deg);
}
}
#elem {
width: 100px;
height: 100px;
background: red;
-webkit-animation-name: my-animation;
-webkit-animation-duration: 4s;
-webkit-animation-iteration-count: infinite
-webkit-animation-timing-function: linear;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment