jquery效果-20

 

<!DOCTYPE html>
<html lang="en">
 
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    <script src="./js/jquery.min.js"></script>
    <style>
        div {
            width: 100px;
            height: 100px;
            background-color: pink;
        }
    </style>
</head>
 
<body>
    <button>显示</button>
    <button>隐藏</button>
    <button>切换</button>
    <div></div>
    <script>
        $(function() {
            $("button").eq(1).click(function() {
                $("div").hide(1000, function() {
                    alert(1);
                });
            });
            $("button").eq(0).click(function() {
                $("div").show(1000, function() {
                    alert(1);
                });
            });
            $("button").eq(2).click(function() {
                $("div").toggle(1000, function() {
                    alert(1);
                });
            })
        });
    </script>
</body>
 
</html>

运行结果

posted @ 2022-06-16 20:09  前端导师歌谣  阅读(17)  评论(0)    收藏  举报