我是靠谱客的博主 阳光饼干,最近开发中收集的这篇文章主要介绍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程序设计的学习有所帮助。

最后

以上就是阳光饼干为你收集整理的jquery队列函数用法实例的全部内容,希望文章能够帮你解决jquery队列函数用法实例所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(178)

评论列表共有 0 条评论

立即
投稿
返回
顶部