zoukankan      html  css  js  c++  java
  • jquery animated选择器 语法

    jquery animated选择器 语法

    作用::animated 选择器选取当前的所有动画元素。直线电机参数

    语法:$(":animated")

    jquery animated选择器 示例

    <html>
    <head>
    <script type="text/javascript" src="http://apps.bdimg.com/libs/jquery/2.1.1/jquery.min.js"></script>
    <script type="text/javascript"> 
    $(document).ready(function(){
      function aniDiv(){
        $("#box").animate({300},"slow");
        $("#box").animate({100},"slow",aniDiv);
      }
      aniDiv();
      $(".btn1").click(function(){
        $(":animated").css("background-color","blue");
      });
    });
    </script>
    <style> 
    div
    {
    background:#98bf21;
    height:40px;
    100px;
    position:relative;
    margin-bottom:5px;
    }
    </style>
    </head>
    <body>
    <div></div>
    <div id="box"></div>
    <div></div>
    <button class="btn1">Mark animated element</button>
    </body>
    </html>
  • 相关阅读:
    第六次作业--结对编程
    第四次作业--项目选题报告(团队)
    Eclipse和JDK的安装配置
    最大最小
    文档
    火车
    排队
    击鼓传花
    逆序数
    塔防——链表的基本操作
  • 原文地址:https://www.cnblogs.com/furuihua/p/11941328.html
Copyright © 2011-2022 走看看