I am using jQuery plugin. I have an element lithat, when frozen, changes the background color. He does this using the standard CSS CSS alias in the :hoverCSS file. This works great until I use the color plugin on it - the effect :hoverjust stops working when I โpulsateโ an element using this code:
$(".elements").first()
.delay(400)
.css({ backgroundColor: '#eeeeee' })
.animate({ backgroundColor: '#888888' }, 2000);
Can someone suggest a solution so that when the โmomentumโ is displayed, the original behavior :hovercontinues to work?
source
share