美文网首页
jQuery的stop。

jQuery的stop。

作者: KEN_Note | 来源:发表于2018-10-16 17:28 被阅读0次

    //立即停止当前动画,继续执行后续的动画

    $('div').stop()

    $('div').stop(false)

    $('div').stop(false,false)

    //立即停止当前和后续所有的动画

    $('div').stop(true)

    $('div').stop(true,false)

    //立即完成当前动画,继续执行后续的动画

    $('div').stop(false,true)

    //立即完成当前动画,并且停止后续的动画

    $('div').stop(true,true)

    相关文章

      网友评论

          本文标题:jQuery的stop。

          本文链接:https://www.haomeiwen.com/subject/abghzftx.html