Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
您好,我正在尝试制作水平菜单。子菜单也是水平的。子菜单应该在悬停时淡入并在鼠标离开时淡出。
我的问题是 Jquery 制作了这些动画队列的东西,这会杀死我的菜单。也许如果你看看jsfiddle你就会明白我的意思。
你想停止哪个元素?改用这个:
$("#nav li").hover(function () { $(this).children("ul").stop(true, true).fadeIn("slow"); }, function(){ $(this).children("ul").stop(true, true).fadeOut("slow"); });
jsFiddle