Created
June 9, 2017 12:51
-
-
Save theuntitled/c36e1d9cfdc46502bba9cbb694c43adf to your computer and use it in GitHub Desktop.
Rainbow text effect for your text
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
.easteregg { | |
animation: rainbow 1s infinite linear; | |
-moz-animation: rainbow 1s infinite linear; | |
-webkit-animation: rainbow 1s infinite linear; | |
-o-animation: rainbow 1s infinite linear; | |
-webkit-transition: color; | |
-moz-transition: color; | |
-o-transition: color; | |
transition: color | |
} | |
@keyframes rainbow { | |
0% { | |
color: #ff0000 | |
} | |
14% { | |
color: #ff00ff | |
} | |
29% { | |
color: #0000ff | |
} | |
42% { | |
color: #00ffff | |
} | |
57% { | |
color: #00ff00 | |
} | |
82% { | |
color: #ffff00 | |
} | |
100% { | |
color: #ff0000 | |
} | |
} | |
@-moz-keyframes rainbow { | |
0% { | |
color: #ff0000 | |
} | |
14% { | |
color: #ff00ff | |
} | |
29% { | |
color: #0000ff | |
} | |
42% { | |
color: #00ffff | |
} | |
57% { | |
color: #00ff00 | |
} | |
82% { | |
color: #ffff00 | |
} | |
100% { | |
color: #ff0000 | |
} | |
} | |
@-webkit-keyframes rainbow { | |
0% { | |
color: #ff0000 | |
} | |
14% { | |
color: #ff00ff | |
} | |
29% { | |
color: #0000ff | |
} | |
42% { | |
color: #00ffff | |
} | |
57% { | |
color: #00ff00 | |
} | |
82% { | |
color: #ffff00 | |
} | |
100% { | |
color: #ff0000 | |
} | |
} | |
@-o-keyframes rainbow { | |
0% { | |
color: #ff0000 | |
} | |
14% { | |
color: #ff00ff | |
} | |
29% { | |
color: #0000ff | |
} | |
42% { | |
color: #00ffff | |
} | |
57% { | |
color: #00ff00 | |
} | |
82% { | |
color: #ffff00 | |
} | |
100% { | |
color: #ff0000 | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment