编辑下面的代码:【加编码】
<html> <head> <script src="https://libs.baidu.com/jquery/1.10.2/jquery.min.js"> </script> <script> $(document).ready(function(){ $("#start").click(function(){ $("div").animate({height:300},1500); $("div").animate({width:300},1500); $("div").animate({height:100},1500); $("div").animate({width:100},1500); }); $("#stop").click(function(){ $("div").clearQueue(); }); }); </script> </head> <body> <button id="start">Start Animation</button> <button id="stop">Stop Animation</button> <br><br> <div style="background:red;height:100px;width:100px;"> </div> </body> </html>
结果: 【此窗口】 帮助?
Try it Yourself - © 自强学堂