jQuery如何停止元素的animate動畫,還有怎樣判斷是否處於動畫狀態?【轉】

來源:互聯網
上載者:User

標籤:strong   io   cti   ar   div   時間   line   js   

停止元素的動畫方法:stop()
文法結構:stop([clearQueue],[gotoEnd])
clearQueue 和 gotoEnd 都為選擇性參數,為布爾值。
clearQueue : 是否要清空未執行玩的動畫列表
gotoEnd : 是否直接將正在執行的動畫跳轉到末狀態

經常在hover時間的動畫效果裡用到 stop() 方法,可以避免動畫效果與游標動作不一致時導致的延遲動畫。
例如:

$(".test").hover(function(){

     $( this ).stop();      .animate({height: "150" ,width: "300" },200); }, function (){      $( this ).stop();      .animate({height: "50" ,width: "100" },3200); }); 判斷元素是否處於動畫狀態: if (! $(elememt).is( ":animated" ) ){ //判斷元素是否處於動畫狀態   //如果當前沒有進行動畫,則添加 }

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.