— 6 Kudos
How to add color change effect to your profile name
Category: Web, HTML, Tech
@keyframes colors{ 0%{ color: red; } 25%{ color: green; } 50%{ color: blue; } 75%{ color: green; } 100%{ color: red; } } span.text { text-align: center; animation-duration: 1s; /*Change the time for faster or slower*/ animation-name: colors; animation » Continue Reading