Skip to content

Instantly share code, notes, and snippets.

@imRohan
Created April 1, 2015 14:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save imRohan/84c6b00ac7b17062a287 to your computer and use it in GitHub Desktop.
Save imRohan/84c6b00ac7b17062a287 to your computer and use it in GitHub Desktop.
April Fools "Disco" Filter
body{
-webkit-animation: adjustHue 1s alternate infinite;
}
@-webkit-keyframes adjustHue {
0% {
-webkit-filter: hue-rotate(30deg);
}
50% {
-webkit-filter: hue-rotate(60deg);
}
100% {
-webkit-filter: hue-rotate(90deg);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment