DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> JavaScript入門知識 >> jQuery入門知識 >> JQuery特效代碼 >> jquery隊列函數用法實例教程
jquery隊列函數用法實例教程
編輯: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程序設計的學習有所幫助。

XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved