現在のアニメーションを停止するには、.stop(true,false) を使用する必要があります。
これがコードの作業バージョンです。(1 つのセレクターを使用して .menu と .button の両方を選択することにより、二重コードを削除しました
$(document).ready(function() { // This sets the opacity of the thumbs to fade down to 60% when the page loads
$(".menu").fadeTo(600, 0.01);
$(".menu, .button").hover(function() {
$(".menu").stop(true,false).fadeTo("slow", 1.0); // This sets the opacity to 100% on hover
}, function() {
$(".menu").stop(true,false).fadeTo("slow", 0.01); // This sets the opacity back to 60% on mouseout
});
});
ここの例も更新しました:http://jsfiddle.net/FZufj/19/