Skip to content

Instantly share code, notes, and snippets.

@mattbasta
Created August 14, 2015 21:44
Show Gist options
  • Save mattbasta/a4fad882a3a38387a3cf to your computer and use it in GitHub Desktop.
Save mattbasta/a4fad882a3a38387a3cf to your computer and use it in GitHub Desktop.
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