fmpq.com
源代码:
点击运行
<!DOCTYPE html> <html> <head> <script src="https://apps.bdimg.com/libs/jquery/2.1.4/jquery.min.js"> </script> <script> $(document).ready(function(){ $(".btn1").click(function(){ $("#p1").animate({maxWidth:"+=50px"}); }); $(".btn2").click(function(){ $("#p1").animate({maxWidth:"-=50px"}); }); }); </script> </head> <body> <button class="btn1">动画 +</button> <button class="btn2">动画 -</button> <p>这是一个段落。</p> <p id="p1" style="max-width:200px;border:1px solid blue;">这是一个动画段落。</p> <p>这是一个段落。</p> </body> </html>
运行结果