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 x=0; $("p").click(function(event){ $("p").animate({fontSize:"+=5px"}); x++; if (x>=2) { $(this).off(event); } }); }); </script> </head> <body> <p>点击这个段落放大字体,只会放大两次。</p> </body> </html>
运行结果