//立即停止当前动画,继续执行后续的动画
$('div').stop()
$('div').stop(false)
$('div').stop(false,false)
//立即停止当前和后续所有的动画
$('div').stop(true)
$('div').stop(true,false)
//立即完成当前动画,继续执行后续的动画
$('div').stop(false,true)
//立即完成当前动画,并且停止后续的动画
$('div').stop(true,true)
网友评论