A Pen by Colt Steele on CodePen.
Created
January 24, 2018 22:30
-
-
Save jsmayo/697d952c555602b3668a8733d918550d to your computer and use it in GitHub Desktop.
ugly keyframe rainbow 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
<p>HELLO!</p> | |
<p>HELLO!</p> |
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
p { | |
animation-name: rainbowtext; | |
animation-duration: 5s; | |
animation-timing-function: linear; | |
animation-delay: 0s; | |
animation-iteration-count: infinite; | |
} | |
@keyframes rainbowtext { | |
0%{ | |
color:red; | |
font-size: 20px; | |
} | |
25%{ | |
color:orange; | |
} | |
50% { | |
color:yellow; | |
font-size: 40px; | |
transform: translateX(200px); | |
} | |
75%{ | |
color: green; | |
} | |
85%{ | |
color: blue | |
} | |
100% { | |
color: purple; | |
font-size:20px; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment