Js动画

来自CloudWiki
跳转至: 导航搜索

<!DOCTYPE html> <html> <head>

   <meta charset="utf-8">
   <meta http-equiv="X-UA-Compatible" content="IE=edge">
   <title>动画</title>
   <link rel="stylesheet" href="">
   <style>
       .box{
           width:500px;
           height:400px;
           background: orange;
       }
   </style>
   <script src="js/jquery.min.js"></script>
   <script>
       $(function(){
           $("button").click(function(){
               $(".box").animate({
                   "margin-left":"+=100px"
               },3000,function(){
               	console.log("2");
               }); 
           })
       })
   </script>

</head> <body> <button>动画</button>

</body> </html>