Home > Web Front-end > JS Tutorial > The use and basis of jQuery callback function (callback)

The use and basis of jQuery callback function (callback)

PHPz
Release: 2018-09-29 15:48:04
Original
1442 people have browsed it

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:&#39;200px&#39;,opacity:&#39;0.4&#39;},"slow");
                p.animate({width:&#39;200px&#39;,opacity:&#39;0.8&#39;},"slow");
                p.animate({height:&#39;100px&#39;,opacity:&#39;0.4&#39;},"slow");
                p.animate({width:&#39;100px&#39;,opacity:&#39;0.8&#39;},"slow");
                p.animate({right:&#39;100px&#39;,opacity:&#39;0.8&#39;},"slow");
                p.animate({bottom:&#39;100px&#39;,opacity:&#39;0.8&#39;},"slow");
                p.animate({left:&#39;100px&#39;,opacity:&#39;0.8&#39;},"slow");
                p.animate({top:&#39;100px&#39;,opacity:&#39;0.8&#39;},"slow",function(){
                    alert("The paragraph is over");
                });
              });
            });
        </script> 
        <script>
            $(document).ready(function(){
                $("button").click(function(){
                    var p=$(".box");
                        p.animate({height:&#39;300px&#39;,opacity:&#39;0.4&#39;},"slow");
                        p.animate({width:&#39;300px&#39;,opacity:&#39;0.8&#39;},"slow");
                        p.animate({height:&#39;100px&#39;,opacity:&#39;0.4&#39;},"slow");
                        p.animate({width:&#39;100px&#39;,opacity:&#39;0.8&#39;},"slow",function(){
                    alert("The paragraph is over");
                    });
                    });
                });
            });
        </script>
    </body>
</html>
Copy after login

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!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template