半透明覆盖/带孔的面罩

时间:2015-11-07 15:29:54

标签: html css html5 css3 svg

如何制作这样的东西?

enter image description here

我尝试使用带有position: absolute的3个div(其中2个带有transformation: skew(...))。它有效但不完美。例如在IE中,顶部和底部div之间有一些空间(我不能将一个放在另一个顶部,因为颜色会变暗),左右两边也是倾斜的(尽管它可能通过添加两个白色来修复) divs here)

enter image description here

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <style type="text/css">
        html {
            display: table;
            margin: auto;
        }
        body{
            display: table-cell;
        }

        .container {
            padding: 15px;
            margin-bottom: 30px;
            position: relative;
        }

        .mask {
            background: rgba(0, 0, 0, 0.78);
            position: absolute;
            z-index: 99;
        }

        .mask-top {
            top: 0;
            left: 0;
            width: 100%;
            height: 70%;
        }

        .mask-left {
            width: 43%;
            height: 30%;
            left: 0;
            bottom: 0;
            margin-left: -24px;
            transform: skew(-16deg);
        }

        .mask-right {
            width: 43%;
            height: 30%;
            right: 0;
            bottom: 0;
            margin-right: -24px;
            transform: skew(16deg);
        }
    </style>
</head>
<body>
    <div class="container">
        <img src="http://i.imgur.com/cnvTRdz.png"/>

        <div class="mask mask-top"></div>
        <div class="mask mask-left"></div>
        <div class="mask mask-right"></div>
    </div>
</body>
</html>

http://jsfiddle.net/sw4tr5bc/2/

还有更好的方法吗? IE浏览器不支持CSS掩码。

UPD:

这是工作解决方案(使用SVG,如答案所示)

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <style type="text/css">
        html {
            display: table;
            margin: auto;
        }
        body{
            display: table-cell;
        }

        .container {
            padding: 15px;
            margin-bottom: 30px;
            position: relative;
        }

        .mask {
            position: absolute;
            z-index: 99;
            top: 0;
            left: 0;
        }
    </style>
</head>
<body>
    <div class="container">
        <img src="http://i.imgur.com/JlWbC0z.png"/>

        <svg class="mask" width="100%" height="100%" viewbox="0 0 798 798">
            <path d="M0 0 L0 798 L270 798 L340 570 L455 570 L520 798 L798 798 L798 0 L0 0 Z" fill="black" opacity="0.78"></path>
        </svg>
    </div>
</body>
</html>

http://jsfiddle.net/sw4tr5bc/3/

1 个答案:

答案 0 :(得分:3)

只需制作内联SVG并将其放在图片上,例如看看this SVG

<svg width="200" height="200">
  <path d="M0 0 L200 0 L200 200 L150 200 L150 150 L100 150 L100 200 L0 200 L0 0 Z" fill="black" />
</svg>

这应该从IE9开始(当然它适用于所有现代浏览器)。

这似乎不是你想要达到的结果,但这只是一个方向。事实上,要成功将其应用到您的案例中,您只需要在上面的SVG中更改几个数字。

对该过程的一些解释:

M0 0 - put the start of your path to x=0 y=0
L200 0 - line to x=200 y=0; then with some more lines you just draw your figure until you return by L0 0 to the beginning
fill="black" sets the color of the figure

所以最后你可以使用这个简单的表示法构建任何路径。然后,您可以在SVG上使用不透明度使背景图片可见。

另外,为了改善您的代码并避免污染HTML,您可以将此SVG作为数据uri放入CSS中,例如: see my another answer也使用SVG来解决CSS问题以学习如何做到这一点。请记住,如果您还希望此CSS方法在IE9中工作,则需要将其编码为URL。无论如何,这只是一块糖,它也可以作为内联HTML SVG而没有任何问题。

相关问题