如何在不完全破坏动画的情况下停止动画排队...我尝试使用 .stop() 如下,但它似乎只是在非常奇怪的时间停止动画然后不再开始。
$('.work_tile').hover(function() {
$(this).stop().find('.white_bkd').stop().fadeIn('fast');
$(this).stop().children('div.arrow').stop().animate({
"left": "+=305px"
}, "fast");
$(this).stop().children('div.tile_header').stop().animate({
"right": "+=200px"
}, "fast");
}, function() {
$(this).stop().find('.white_bkd').stop().fadeOut('fast');
$(this).stop().children('div.arrow').stop().animate({
"left": "-=305px"
}, "fast");
$(this).stop().children('div.tile_header').stop().animate({
"right": "-=200px"
}, "fast");
})