如果你看看: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");
});
});