其他分享
首页 > 其他分享> > 效果2-滑动-滑入效果

效果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>

 

标签:function,hide,效果,show,滑入,滑动,click,op
来源: https://www.cnblogs.com/zh718594493/p/15656553.html