1. Cari kode
a:hover
dalam template anda.2. Setelah ketemu hapus dan ganti dengan kode di bawah ini
a:hover {
animation-name: warna;
animation-duration: 0.5s;
animation-iteration-count: infinite;
animation-direction: alternate;
animation-timing-function: ease-in-out;
}
@keyframes warna {
0% { color:red;}
5% { color:purple;}
10% { color:black;}
15% { color:green;}
20% { color:blue;}
40% { color:red; }
45% { color:pink; }
50% { color:orange; }
55% { color:aqua; }
60% { color:orange; }
80% { color:darkgray; }
90% { color:lime; }
100% { color:yellow; }
}
3. Terakhir save template anda..
Demo : Silahkan arahkan mouse ke --> Hover Link Color With CSS3 Keyframe
Semoga bermanfaat.