微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

功能2 -- hover出现遮照效果

方法1(jquery):animate();

方法2(css):transition;

<!DOCTYPE html><html><head><Meta charset="utf-8" /><title></title>

<style type="text/css">
    * {
        margin: 0;
        padding: 0;
    }
    .father {
        overflow: hidden;
        position: relative;
        width: 200px;
        height: 200px;
        background: #fff;
        border: 1px solid #000;
        margin: 0 auto;
    }
    .son {
        position: absolute;
        top: -100%;
        left: 0;
        width: 200px;
        height: 200px;
        background: rgba(0,.5);
        color: #fff;
    }
</style>
<style type="text/css">
    .father1 {
        overflow: hidden;
        position: relative;
        width: 200px;
        height: 200px;
        background: #fff;
        border: 1px solid #000;
        margin: 0 auto;
    }
    .son1 {
        position: absolute;
        top: -100%;
        left: 0;
        width: 200px;
        height: 200px;
        background: rgba(0,.5);
        color: #fff;
        transition: top 1s;
    }
    .father1:hover .son1 {
        top: 0%;
    }
    
</style>
</head>

<body>
    <!-- jq方法 -->
    <div class="father">
        I am Father
        <div class="son">I am Son</div>
    </div>
    <script type="text/javascript" src="https://cdn.bootcss.com/jquery/3.3.1/jquery.min.js"></script>
    <script type="text/javascript">
        $(.father).mouSEOver(function () {
            $(this).find(.son).stop()
            $(this).find(.son).animate({top: 0%},slow)
        }).mouSEOut(function() {
            $(this).find(.son).stop()
            $(this).find(.son).animate({top: -100%},slow)
        })
    </script>
    <!-- css方法 -->
    <div class="father1">
        I am Father1
        <div class="son1">I am Son1</div>
    </div>
</html>

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐