Skip to content

Instantly share code, notes, and snippets.

@RodolpheGohard
Created February 19, 2015 10:32
Show Gist options
  • Save RodolpheGohard/ce54c1fee4a15438fcb8 to your computer and use it in GitHub Desktop.
Save RodolpheGohard/ce54c1fee4a15438fcb8 to your computer and use it in GitHub Desktop.
shiny text color animation. CAUTION: Hazardous material. Wear suitable eye protection.
.shiny {
color: #FFF;
animation-name: homeCycle;
animation-duration:1s;
animation-direction:alternate;
animation-iteration-count:infinite;
-webkit-animation-name: homeCycle;
-webkit-animation-duration:1s;
-webkit-animation-direction:alternate;
-webkit-animation-iteration-count:infinite;
}
@keyframes homeCycle
{
0% {color:#006;}
25% {color:#060;}
50% {color:#CC3200;}
75% {color:#603;}
}
@-webkit-keyframes homeCycle
{
0% {color:#006;}
25% {color:#060;}
50% {color:#CC3200;}
75% {color:#603;}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment