• 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>
  • 相关阅读:
    外媒曝Snapchat“被追”全过程:腾讯最先出手 脸书谷歌跟风
    Instagram
    阅后即焚
    Snapchat
    WhatsApp
    Facebook
    优酷网Youku
    土豆网与Youtube比较
    土豆网
    YouTube
  • 原文地址:https://www.cnblogs.com/liang715200/p/10072982.html
Copyright © 2020-2023  润新知