效果2-滑动-滑入效果

1.效果展示

 

 2.代码展示

 

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>动画效果-滑动-效果</title>
    <script src="./js/jquery.js"></script>
    <style>
        .op {
            height: 20px;
            width: 300px;
            background-color: pink;
            float: left;
        }
    </style>
</head>
<body>
    <div class="op">你好啊,都是自己的内容其实都确定东西</div>
    <input type="button" value="隐藏队列动画" class="hide">
    <input type="button" value="展示队列动画" class="show">
</body>
</html>
<script>
    $(function(){
        $(".hide").click(function(){
            $(".op").hide(2000);
        })
        $(".show").click(function(){
            $(".op").show(2000);
        });
    })
</script>

 

posted on 2021-12-07 15:50  孤灯引路人  阅读(56)  评论(0编辑  收藏  举报

导航