當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


JQuery .dequeue()用法及代碼示例


用法
.dequeue(  [queueName ] ) => jQuery

說明:對匹配的元素執行隊列中的下一個函數。

  • 添加的版本:1.2.dequeue( [queueName ] )

    • queueName
      類型:String
      包含隊列名稱的字符串。默認為 fx ,標準效果隊列。

.dequeue()被調用時,隊列中的下一個函數從隊列中移除,然後執行。該函數應反過來(直接或間接)導致調用.dequeue(),以便序列可以繼續。

例子:

使用 dequeue 來結束允許隊列繼續運行的自定義隊列函數。

<!doctype html>
<html lang="en">
<head>
  <meta charset="utf-8">
  <title>dequeue demo</title>
  <style>
  div {
    margin: 3px;
    width: 50px;
    position: absolute;
    height: 50px;
    left: 10px;
    top: 30px;
    background-color: yellow;
  }
  div.red {
    background-color: red;
  }
  </style>
  <script src="https://code.jquery.com/jquery-3.5.0.js"></script>
</head>
<body>
 
<button>Start</button>
<div></div>
 
<script>
$( "button" ).click(function() {
  $( "div" )
    .animate({ left:"+=200px" }, 2000 )
    .animate({ top:"0px" }, 600 )
    .queue(function() {
      $( this ).toggleClass( "red" ).dequeue();
    })
    .animate({ left:"10px", top:"30px" }, 700 );
});
</script>
 
</body>
</html>

演示:

相關用法


注:本文由純淨天空篩選整理自jquery.com大神的英文原創作品 .dequeue()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。