這篇文章主要介紹了jQuery 回呼函數(callback)的使用和基礎,需要的朋友可以參考下
還是先貼代碼吧
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title></title> <script src="js/jquery.js"></script> </head> <style> body{font-family: "微软雅黑";width: 980px; margin: 0 auto; text-align: center;} .box{ width: 300px; height: 300px; background: green; border: 1px solid #e6e6e6; margintop: 50px; line-height: 200px; position: absolute; } button{ border: none; background: green; width: 100px; height: 50px; line-height: 50px; color: #fff; font-size: 16px; margin-top: 50px; } </style> <body> <button>点击开始动画</button> <p class="box" ></p> <script> $(document).ready(function(){ $("button").click(function(){ var p=$(".box"); p.animate({height:'200px',opacity:'0.4'},"slow"); p.animate({width:'200px',opacity:'0.8'},"slow"); p.animate({height:'100px',opacity:'0.4'},"slow"); p.animate({width:'100px',opacity:'0.8'},"slow"); p.animate({right:'100px',opacity:'0.8'},"slow"); p.animate({bottom:'100px',opacity:'0.8'},"slow"); p.animate({left:'100px',opacity:'0.8'},"slow"); p.animate({top:'100px',opacity:'0.8'},"slow",function(){ alert("The paragraph is over"); }); }); }); </script> <script> $(document).ready(function(){ $("button").click(function(){ var p=$(".box"); p.animate({height:'300px',opacity:'0.4'},"slow"); p.animate({width:'300px',opacity:'0.8'},"slow"); p.animate({height:'100px',opacity:'0.4'},"slow"); p.animate({width:'100px',opacity:'0.8'},"slow",function(){ alert("The paragraph is over"); }); }); }); }); </script> </body> </html>
所謂的回調函數,其實就是在speed 或duration 參數可以設定許多不同的值,例如"slow", "fast", "normal" 或毫秒 後面再加入函數,顯示相對應的內容,以提示網友。
以上就是本章的全部內容,更多相關教學請訪問jQuery影片教學!