2d蒙版效果

2d-picture.png

当鼠标移入图片的时候,阴影层从左侧慢慢划过来。主要应用了css3的动画效果和定位

 *{margin: 0;padding: 0;}
        .box{
            width: 200px;
            height: 200px;
            position: relative;
        }
        .b1{
            width: 200px;
            height: 200px;
            background: url("img/hua1.jpg") no-repeat center;
            background-size: cover;
            position: absolute;
            z-index: 1;
            left: 0;
        }
        .b2{
            width: 200px;
            height: 200px;
            background: rgba(255,0,0,0.6);
            transition: all 3s;
            position: absolute;
            left: -200px;
            z-index: 555;
        }
        .box:hover .b2{
            transform: translateX(200px) ;
        }
<div class="box">
    <div class="b1"></div>
    <div class="b2"></div>
</div>
©著作权归作者所有,转载或内容合作请联系作者
【社区内容提示】社区部分内容疑似由AI辅助生成,浏览时请结合常识与多方信息审慎甄别。
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

推荐阅读更多精彩内容

友情链接更多精彩内容