当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


JQuery .clearQueue()用法及代码示例


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

说明:从队列中删除所有尚未运行的项目。

  • 添加的版本:1.4.clearQueue( [queueName ] )

    • queueName
      类型:String
      包含队列名称的字符串。默认为 fx ,标准效果队列。

当调用.clearQueue() 方法时,队列中所有尚未执行的函数都从队列中移除。当不带参数使用时,.clearQueue() 会从标准效果队列 fx 中删除剩余的函数。这种方式类似于 .stop(true) 。然而,虽然 .stop() 方法仅用于动画,但 .clearQueue() 也可用于删除已使用 .queue() 方法添加到通用 jQuery 队列的任何函数。

例子:

清空队列。

<!doctype html>
<html lang="en">
<head>
  <meta charset="utf-8">
  <title>clearQueue demo</title>
  <style>
  div {
    margin: 3px;
    width: 40px;
    height: 40px;
    position: absolute;
    left: 0px;
    top: 30px;
    background: green;
    display: none;
  }
  div.newcolor {
    background: blue;
  }
  </style>
  <script src="https://code.jquery.com/jquery-3.5.0.js"></script>
</head>
<body>
 
<button id="start">Start</button>
<button id="stop">Stop</button>
<div></div>
 
<script>
$( "#start" ).click(function() {
  var myDiv = $( "div" );
  myDiv.show( "slow" );
  myDiv.animate({
    left:"+=200"
  }, 5000 );
 
  myDiv.queue(function() {
    var that = $( this );
    that.addClass( "newcolor" );
    that.dequeue();
  });
 
  myDiv.animate({
    left:"-=200"
  }, 1500 );
  myDiv.queue(function() {
    var that = $( this );
    that.removeClass( "newcolor" );
    that.dequeue();
  });
  myDiv.slideUp();
});
 
$( "#stop" ).click(function() {
  var myDiv = $( "div" );
  myDiv.clearQueue();
  myDiv.stop();
});
</script>
 
</body>
</html>

演示:

相关用法


注:本文由纯净天空筛选整理自jquery.com大神的英文原创作品 .clearQueue()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。