Skip to content

Instantly share code, notes, and snippets.

@onedayitwillmake
Created February 25, 2013 20:26
Show Gist options
  • Save onedayitwillmake/5032983 to your computer and use it in GitHub Desktop.
Save onedayitwillmake/5032983 to your computer and use it in GitHub Desktop.
<style>
@-webkit-keyframes test_animation
{
from {
-webkit-transform:rotateZ(0deg);
}
to {
-webkit-transform:rotateZ(180deg);
}
}
.test {
-webkit-animation-name: test_animation;
-webkit-animation-iteration-count: infinite;
-webkit-animation-timing-function: linear;
-webkit-animation-duration: 1.5s;
background-color: #00ff00;
}
</style>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment