fmpq.com
源代码:
点击运行
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>Fmpq教程(fmpq.com)</title> <script src="https://apps.bdimg.com/libs/jquery/2.1.4/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">开始动画</button> <button id="stop">停止动画</button> <br><br> <div style="background:red;height:100px;width:100px;"> </div> </body> </html>
运行结果