Skip to content

Instantly share code, notes, and snippets.

@dmacompton
Created November 14, 2016 11:52
Show Gist options
  • Save dmacompton/42f5b36ff791a76d5bee036efbc939e2 to your computer and use it in GitHub Desktop.
Save dmacompton/42f5b36ff791a76d5bee036efbc939e2 to your computer and use it in GitHub Desktop.
cssColorChangingAnimation
@keyframes zomg {
0%,100% {
color: #7ccdea
}
16% {
color: #0074D9
}
32% {
color: #2ECC40
}
48% {
color: #FFDC00
}
64% {
color: #B10DC9
}
80% {
color: #FF4136
}
}
a:hover {
animation: zomg .5s infinite
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment