JSFiddle - React, Tailwind, and code Playground
HTML
<a>Hover turns me briefly blue</a>
CSS
@-webkit-keyframes glow {
0% { background-color: blue; }
100% { background-color: blue; }
}
a{
-webkit-animation-name: glow;
-webkit-animation-duration: 3s;
-webkit-animation-iteration-count:infinite;
}
@-webkit-keyframes noglow {
0% { background-color: transparent; }
100% { background-color: transparent; }
}
a:hover{-webkit-animation-name: noglow;}