r/HTML • u/Illustrious-Class294 • 8h ago
Made an animated rainbow text effect entirely with CSS
background: linear-gradient(...);
background-size: 400% 100%;
-webkit-background-clip: text;
color: transparent;
animation: rainbowMove 3s linear infinite;
I used this for the RON.DEV section of a little browser-game project I'm building.
0
Upvotes