Skip to content

Instantly share code, notes, and snippets.

@jsmayo
Created January 24, 2018 22:30
Show Gist options
  • Save jsmayo/697d952c555602b3668a8733d918550d to your computer and use it in GitHub Desktop.
Save jsmayo/697d952c555602b3668a8733d918550d to your computer and use it in GitHub Desktop.
ugly keyframe rainbow text
<p>HELLO!</p>
<p>HELLO!</p>
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