Home >Web Front-end >JS Tutorial >The use and basis of jQuery callback function (callback)
This article mainly introduces the use and foundation of jQuery callback function (callback). Friends who need it can refer to it
It is better to post the code first
<!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>
The so-called callback function , in fact, you can set many different values in the speed or duration parameters, such as "slow", "fast", "normal" or milliseconds, and then add a function after it to display the corresponding content to remind netizens.
The above is the entire content of this chapter. For more related tutorials, please visit jQuery Video Tutorial!