Переливающиеся ссылки
Код:
<!-- Переливающиеся ссылки -->
<style>
body a:hover {
-webkit-animation:rotateColor 2s linear infinite;
animation:rotateColor 2s linear infinite;
}
@-webkit-keyframes rotateColor {
0% {color:rgb(255, 2, 2);}
20% {color:rgb(239, 255, 2);}
40% {color:rgb(2, 255, 21);}
60% {color:rgb(2, 255, 255);}
80% {color:rgb(18, 2, 255);}
100% {color:rgb(255, 2, 212);}
110% {color:rgb(255, 0, 0);}
}
@keyframes rotateColor {
0% {color:rgb(255, 2, 2);}
20% {color:rgb(239, 255, 2);}
40% {color:rgb(2, 255, 21);}
60% {color:rgb(2, 255, 255);}
80% {color:rgb(18, 2, 255);}
100% {color:rgb(255, 2, 212);}
110% {color:rgb(255, 0, 0);}
}
</style>Источник и пример - здесь.