Created
February 19, 2014 14:49
-
-
Save stevefrost/9093578 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
* * { | |
-webkit-animation: rotate 15s infinite; | |
} | |
@-webkit-keyframes rotate { | |
0% { -webkit-transform: rotate(0deg); } | |
33% { -webkit-transform: rotate(-0.06deg); } | |
66% { -webkit-transform: rotate(0.06deg); } | |
100% { -webkit-transform: rotate(0deg); } | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment