$(".box-otoc li").hover( function () { $(this).find(".btn-right-close-otoc").stop().animate({right: -15, opacity: 'show' }, 200); }, function () { $(this).find(".btn-right-close-otoc").stop().animate({right: 10, opacity: 'hide' }, 200); } );
針對,hover事件的鼠標快速反覆滑來滑去,致使的BUG,在動畫開始前加個.stop()便可。javascript