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がこれらのanimationsqueueのものを作成し、それが私のメニューを殺してしまうことです。たぶん、jsfiddleを見ると、私が何を意味しているのかがわかります。
どの要素を停止しますか?代わりにこれを使用してください:
$("#nav li").hover(function () { $(this).children("ul").stop(true, true).fadeIn("slow"); }, function(){ $(this).children("ul").stop(true, true).fadeOut("slow"); });
jsFiddle