<span class="rainbow">{username}</span>
20-01-2015, 12:55 PMAndresXZ09 Wrote: I had problems when I tried to use it before, I had to paste the code on another .css, not on global.css... I have a thread about it on MyBB Community
.rainbow{ -webkit-animation:rainbow 3s linear infinite; animation:rainbow 3s linear infinite; } @keyframes rainbow { from { color: red; text-shadow: 0 0 10px red; } 15% { color: orange; text-shadow: 0 0 10px orange; } 30% { color: yellow; text-shadow: 0 0 10px yellow; } 45% { color: green; text-shadow: 0 0 10px green; } 60% { color: blue; text-shadow: 0 0 10px blue; } 75% { color: indigo; text-shadow: 0 0 10px indigo; } 90% { color: violet; text-shadow: 0 0 10px violet; } to { color: red; text-shadow: 0 0 10px red; } } @-webkit-keyframes rainbow { from { color: red; text-shadow: 0 0 10px red; } 15% { color: orange; text-shadow: 0 0 10px orange; } 30% { color: yellow; text-shadow: 0 0 10px yellow; } 45% { color: green; text-shadow: 0 0 10px green; } 60% { color: blue; text-shadow: 0 0 10px blue; } 75% { color: indigo; text-shadow: 0 0 10px indigo; } 90% { color: violet; text-shadow: 0 0 10px violet; } to { color: red; text-shadow: 0 0 10px red; } }
Loading Info...