zoukankan      html  css  js  c++  java
  • css动画

    <!DOCTYPE html>
    <html lang="en">
    <head>
     <meta charset="UTF-8">
     <title>animate 学习</title>
     <script type="text/javascript"  src="./js/jquery.min.js"></script>
     <script type="text/javascript">
     //jquery单一入口
     $ (function(){
      //
      $("#b2").click(function(){
      // 通过标签选择器来进行动画动作
      $("div").animate({
       left: '400px',
        '400px',
       height:'400px'
      
      });
      $("div").animate({
       right: '400px',
        '400px',
       height:'400px'
      
      });

      });
     });

     </script>
    </head>
    <body>
     <div style=" width : 200px; height : 200px; font-size: 30px; text-align: center;line-height ;position:absolute;"> 我是你爸爸</div>
     </br></br>
     <input  style="margin-top:400px;" type="button" id="b2" value=" 开始动画"/>
     
    </body>
    </html>
  • 相关阅读:
    [转]用mamcache 存储session的好处
    [转]怎么写 JQuery插件 (案例原理)
    关于查询优化
    HBase Canary
    HBase Bulk Loading
    有用的技术网站
    HBase 运维分析
    HBase rest
    hbase mlockall
    Jamon
  • 原文地址:https://www.cnblogs.com/liang715200/p/10072982.html
Copyright © 2011-2022 走看看