服务器之家

服务器之家 > 正文

jquery队列函数用法实例

时间:2021-05-21 16:38     来源/作者:jQuery教程网

本文实例讲述了jquery队列函数用法。分享给大家供大家参考。具体实现方法如下:

 

复制代码 代码如下:
<!DOCTYPE>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<script type="text/javascript" src="jquery-1.9.1.js"></script>
</head>
<body>
<style>
  div { margin:3px; width:40px; height:40px;
        position:absolute; left:0px; top:30px;
        background:green; display:none; }
  div.newcolor { background:blue; }
  </style>
  Click here...
  <div></div>
<script>
$(document.body).click(function () {
      $("div").show("slow");
      //$("div").slideDown();
      $("div").animate({left:'+=200'},2000);
      $("div").queue(function () {//入队列
          $(this).addClass("newcolor");
          $(this).dequeue();//出队列
      });
      $("div").animate({left:'-=200'},2000);
      $("div").queue(function () {//入队列
          $(this).removeClass("newcolor");
          $(this).dequeue();//出队列
      });
      $("div").slideUp();
});
</script>
</body>
</html>

 

希望本文所述对大家jQuery程序设计的学习有所帮助。

标签:

相关文章

热门资讯

2020微信伤感网名听哭了 让对方看到心疼的伤感网名大全
2020微信伤感网名听哭了 让对方看到心疼的伤感网名大全 2019-12-26
yue是什么意思 网络流行语yue了是什么梗
yue是什么意思 网络流行语yue了是什么梗 2020-10-11
背刺什么意思 网络词语背刺是什么梗
背刺什么意思 网络词语背刺是什么梗 2020-05-22
苹果12mini价格表官网报价 iPhone12mini全版本价格汇总
苹果12mini价格表官网报价 iPhone12mini全版本价格汇总 2020-11-13
2021德云社封箱演出完整版 2021年德云社封箱演出在线看
2021德云社封箱演出完整版 2021年德云社封箱演出在线看 2021-03-15
返回顶部