В классе css "employee_mouseover" я делаю цвет bg красным.
$(".employee").bind("mouseenter", function() {
$(this).addClass("employee_mouseover");
});
$(".employee").bind("mouseleave", function() {
$(this).removeClass("employee_mouseover");
});
Это отлично работает.
Но, когда я устанавливаю скорость, чтобы она выглядела более красивой, элемент остается красным, когда я быстро делаю mouseenter + mouseleave;
$(".employee").bind("mouseenter", function() {
$(this).addClass("employee_mouseover", "fast");
});
$(".employee").bind("mouseleave", function() {
$(this).removeClass("employee_mouseover", "fast");
});
Это не очень хорошо работает, если я не очень медленно двигаюсь внутрь элемента.
Есть ли лучший способ сделать это?
Заранее спасибо.