Created
May 23, 2014 23:59
-
-
Save denzildoyle/6fee4e643f51b53b5d9c to your computer and use it in GitHub Desktop.
CSS Keyframe Animation Color Change
This file contains hidden or 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
@-webkit-keyframes fade { | |
0%, 100% { color: #e95545; } | |
12.5% { color: #924ead; } | |
25% { | |
color: #63b6d2; } | |
37.5% { | |
color: #76d78b; } | |
50% { | |
color: #dadc36; } | |
62.5% { | |
color: #fedb31; } | |
75% { | |
color: #fb9e2f; } | |
87.5% { | |
color: #f17239; } | |
100% { | |
color: #e95546; } } | |
@-moz-keyframes fade { | |
0%, 100% { | |
color: #e95545; } | |
12.5% { | |
color: #924ead; } | |
25% { | |
color: #63b6d2; } | |
37.5% { | |
color: #76d78b; } | |
50% { | |
color: #dadc36; } | |
62.5% { | |
color: #fedb31; } | |
75% { | |
color: #fb9e2f; } | |
87.5% { | |
color: #f17239; } | |
100% { | |
color: #e95546; } } | |
@keyframes fade { | |
0%, 100% { | |
color: #e95545; } | |
12.5% { | |
color: #924ead; } | |
25% { | |
color: #63b6d2; } | |
37.5% { | |
color: #76d78b; } | |
50% { | |
color: #dadc36; } | |
62.5% { | |
color: #fedb31; } | |
75% { | |
color: #fb9e2f; } | |
87.5% { | |
color: #f17239; } | |
100% { | |
color: #e95546; } } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment