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(){ $("#btn1").click(function(){ $("div").animate({height:"300px"}); $("div").animate({width:"600px"}); $("div").delay(1200).animate({height:"900px"}); }); }); </script> </head> <body> <p>这个实例演示了使用 animate() 方法来合并三个框。</p> <p>第三个框通过 delay() 来设置 1200 毫秒延迟。</p> <div style="background:purple;height:100px;width:100px;margin:6px;"> </div> <p><button id="btn1">动画</button></p> </body> </html>
运行结果