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(){ var div = $("div"); $("#start").click(function(){ div.animate({height:300},"slow"); div.animate({width:300},"slow"); div.animate({height:100},"slow"); div.animate({width:100},"slow"); }); $("#stop").click(function(){ div.stop(true); }); }); </script> </head> <body> <p> <button id="start">开始动画</button> <button id="stop">停止全部队列动画</button> </p> <div style="background:#98bf21;height:100px;width:100px"> </div> </body> </html>
运行结果