I have a link that\'s running an infinite animation with the background color. I want to stop the animation and transition into a different background color on hover.
Try -webkit-animation: 0;. Demo here. 0 is the default value for animation or what you must set to disable any existing CSS3 animations.
-webkit-animation: 0;
0
animation