Created
August 25, 2010 21:47
-
-
Save danott/550375 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
/* Animation that rotates the logo */ | |
@-webkit-keyframes spin-logo | |
{ | |
0% { -webkit-transform: scale(1); } | |
50% { -webkit-transform: scale(.98); } | |
100% { -webkit-transform: scale(1); } | |
} | |
.selector { | |
-webkit-animation-name: spin-logo; | |
-webkit-animation-duration: 5s; | |
-webkit-animation-iteration-count: infinite; | |
-webkit-animation-timing-function: linear; | |
} | |
/* End Animation that rotates the logo */ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment