1

如果你看看:http ://sweetnation.co.uk/store/index.php?route=product/category&path=60

并将鼠标悬停在菜单的类别部分上,类别会淡入,但有时它们会淡入一半而您看不到它们。我不知道是什么原因造成的。

$(document).ready(function() {
  $(".hover_bitch, #menu").hover(function(){
        $("#menu").stop().fadeIn("fast");
    },function(){
        $("#menu").stop().fadeOut("fast");
    });
});
4

2 回答 2

2

尝试.stop(true, true)

$(document).ready(function() {
  $(".hover_bitch, #menu").hover(function(){
        $("#menu").stop(true, true).fadeIn("fast");
    },function(){
        $("#menu").stop(true, true).fadeOut("fast");
    });
});
于 2012-10-02T10:08:36.873 回答
1

你的问题.stop()

尝试使用jQuery HoverIntent并删除你的.stop()

于 2012-10-02T10:12:16.643 回答