У меня есть довольно простая анимация в выпадающем меню, которая, кажется, чертовски много и довольно часто перестает отвечать на запросы. Это происходит в Firefox и Internet Explorer.
Используемый код jQuery:
$(".optionslink").hover(function() {
$(".dropdown").stop(true,true);
$(".dropdown").animate({opacity: 100, top: '30px'},200);
$(".optionslink").css("background-color","#444");
}, function() {
$(".dropdown").animate({top: -$(".dropdown").height(), opacity: 0}, 400);
$(".optionslink").css("background-color","transparent");
}
);
HTML:
<div class="optionslink" style="background-color: transparent;">
<a class="optionslinka" href="">Options <img alt="" src="/web/resources/graphics/lightdownarrow.gif"></a>
<div class="dropdown" style="opacity: 0; top: -86px;">
Drop down text / links here
</div>
</div>
Может кто-нибудь дать совет?