一个很好玩的jquery例子:小方块先逐渐显示,后向右滑动,再向左滑回,最后向上隐藏

来源:互联网 发布:在线模拟装机软件 编辑:程序博客网 时间:2024/06/06 01:33
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
 <head>
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
  <title> The jquery Test </title>
  <meta name="Keywords" content="">
  <meta name="Description" content="">
  <script type="text/javascript" language="javascript" src="http://longzhiwen-478.blog.163.com/blog/jquery-1.4.2.js"></script>
  <!--<script type="text/javascript" language="javascript" src="http://longzhiwen-478.blog.163.com/blog/json.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; }
  div.newcolor2 { background:red; }
  </style>
  Click here...
  <div></div>

 <script type="text/javascript">

$(document.body).click(function () {
      $("div").show("slow");
      $("div").animate({left:'+=1000'},1000);
      $("div").queue(function () {
          $(this).addClass("newcolor2");
          $(this).dequeue();
      });
      $("div").animate({left:'-=1000'},1000);
      $("div").queue(function () {
          $(this).removeClass("newcolor2");
          $(this).addClass("newcolor");          
          $(this).dequeue();
          $(this).removeClass("newcolor");
      });
      $("div").slideUp(); //向上隐藏
      
});

 </script>
 </body>
</html>
0 0
原创粉丝点击