Created
August 14, 2015 21:44
-
-
Save mattbasta/a4fad882a3a38387a3cf to your computer and use it in GitHub Desktop.
This file contains 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
html { | |
-webkit-animation: rotate 30s linear 0s infinite; | |
} | |
@-webkit-keyframes rotate { | |
from { | |
-webkit-filter: hue-rotate(0); | |
/*-webkit-transform: rotate(0);*/ | |
} | |
to { | |
-webkit-filter: hue-rotate(360deg); | |
/*-webkit-transform: rotate(360deg);*/ | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment