欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

JavaScript编程开发中jquery队列函数用法实例教程

程序员文章站 2022-09-15 12:06:54
本文实例讲述了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>
  p { margin:3px; width:40px; height:40px;
        position:absolute; left:0px; top:30px;
        background:green; display:none; }
  p.newcolor { background:blue; }
  </style>
  click here...
  <p></p>
<script>
$(document.body).click(function () {
      $("p").show("slow");
      //$("p").slidedown();
      $("p").animate({left:'+=200'},2000);
      $("p").queue(function () {//入队列
          $(this).addclass("newcolor");
          $(this).dequeue();//出队列
      });
      $("p").animate({left:'-=200'},2000);
      $("p").queue(function () {//入队列
          $(this).removeclass("newcolor");
          $(this).dequeue();//出队列
      });
      $("p").slideup();
});
</script>
</body>
</html>