当前位置 博文首页 > 文章内容

    遮罩层镂空效果的多种实现方法

    作者: 栏目:未分类 时间:2020-09-15 15:01:11

    本站于2023年9月4日。收到“大连君*****咨询有限公司”通知
    说我们IIS7站长博客,有一篇博文用了他们的图片。
    要求我们给他们一张图片6000元。要不然法院告我们

    为避免不必要的麻烦,IIS7站长博客,全站内容图片下架、并积极应诉
    博文内容全部不再显示,请需要相关资讯的站长朋友到必应搜索。谢谢!

    另祝:版权碰瓷诈骗团伙,早日弃暗投明。

    相关新闻:借版权之名、行诈骗之实,周某因犯诈骗罪被判处有期徒刑十一年六个月

    叹!百花齐放的时代,渐行渐远!



    先看看效果

     

    【 方法一:截图模拟实现 】

    原理:先截一张相同位置的图片,创建一个遮罩层,然后把图片定位在相应的位置上。 

    优点:原理简单;兼容性好,可以兼容到IE6、IE7;可以同时实现镂空多个。  

    缺点:此方法只适合静止页面,不适合可以滚动的页面。也不适合页面内容会发生变换的页面。 

    代码如下:  

    <div >
        <img src="images/000.jpg" alt=""/>
    </div>
    
    .class1{
        position: absolute;
        width:100%;
        height:100%;
        top: 0;
        left: 0;
        background-color: #000;
        opacity: 0.6;
        filter:alpha(opacity=60);
    }
    .class1 img{
        position: absolute;
        top:260px;
        left: 208px;
    }

     

    【 方法二:css3阴影属性实现 】

    原理:利用css3的阴影属性。 

    优点:实现方便;适合任何页面,不会受页面的限制。

    缺点:兼容不太好,只能兼容到IE9。 

    代码如下:  

    <div ></div>
    
    .class2{
        position: absolute;
        width:170px;
        height:190px;
        top: 260px;
        left: 208px;
        box-shadow: rgba(0,0,0,.6) 0  0  0  100vh;
    }

     

    【 方法三:CSS边框属性实现 】

    原理:利用边框属性。先将一个空盒子定位在目标区域,然后在其四周用边框填充。 

    优点:实现方便,兼容性好,可以兼容到IE6、IE7;适合任何页面,不会受页面的限制。

    缺点:要做兼容实现过程则相对复杂。  

    代码如下:

    <div class="class3"></div>
    .class3{
          position: absolute;
          width:170px;
          height:190px;
          top: 0;
          left: 0;
          border-left-width:208px;
          border-left-style: solid;
          border-left-color:rgba(0,0,0,.6);
          border-right-width:970px;
          border-right-style: solid;
          border-right-color:rgba(0,0,0,.6);
          border-top-width:260px;
          border-top-style: solid;
          border-top-color:rgba(0,0,0,.6);
          border-bottom-width:253px;
          border-bottom-style: solid;
          border-bottom-color:rgba(0,0,0,.6);
    }

    广州vi设计公司 http://www.maiqicn.com 我的007办公资源网 https://www.wode007.com

    【 方法四:SVG或者canvas 】

    原理:利用SVG或者canvas的绘图功能。 

    优点:可以同时镂空多个。 缺点:兼容性不好,实现过程相对复杂。 

    我以SVG为例,代码如下:  

     
    <svg style="position: absolute;" width="1366" height="700">
        <defs>
            <mask id="myMask">
                <rect x="0" y="0" width="100%" height="100%" style="stroke:none; fill: #ccc"></rect>
                <rect id="circle1" width="170" height="190" x='208' y="260" style="fill: #000" />
            </mask>
        </defs>
        <rect x="0" y="0" width="100%" height="100%" style="stroke: none; fill: rgba(0, 0, 0, 0.6); mask: url(#myMask)"></rect>
    </svg>