一篇文章带你了解SVG 蒙版(Mask)

简介: 一篇文章带你了解SVG 蒙版(Mask)

image.png

SVG蒙版功能可将蒙版应用于SVG形状。蒙版可确定SVG形状的哪些部分可见,以及具有什么透明度。运行效果可以将SVG蒙版视为剪切路径的更高级版本。


一、简单的蒙版


代码解析:

本示例使用ID=mask1定义一个蒙版。


元素内部是一个元素。元素定义了蒙版的形状。


定义了一个使用mask的元素,元素使用CSS style属性mask内部引用mask ID属性。

例:

<svg width="500" height="120"><defs><mask id="mask1" x="0" y="0" width="100" height="100"><rect x="0" y="0" width="100" height="50" style="stroke:none; fill: #ffffff" /></mask></defs><rect x="1" y="1" width="100" height="100" style="stroke: none; fill: #0000ff; mask: url(#mask1)" /></svg>

注:

要显示的矩形的高度为100像素,但垂直的前50个像素是可见的。那是因为蒙版矩形只有50个像素高。矩形仅在蒙版矩形所覆盖的部分中可见。


黑色轮廓矩形是没有蒙版的矩形的大小。


二、其他形状的蒙版


可以使用任何SVG形状作为蒙版。


使用圆圈作为蒙版。

<svg> <defs>   <mask id="mask2" x="0" y="0" width="100" height="100" >     <circle cx="25" cy="25" r="25" style="stroke:none; fill: #ffffff"/>   </mask> </defs>
 <rect x="1" y="1" width="100" height="100"   style="stroke: none; fill: #0000ff; mask: url(#mask2)"/>
</svg>

运行效果:

image.png

注:仅在可见蒙版圆的地方可见引用蒙版的矩形。


三、蒙版形状颜色定义蒙版不透明度


1. 如何去定义不透明度 ?

蒙版形状(圆形或矩形)的填充颜色设置为#ffffff。


蒙版形状的颜色定义使用蒙版的形状的不透明度。蒙版形状的颜色越接近#ffffff(白色),使用蒙版的形状将越不透明。蒙版形状的颜色越接近#000000(黑色),使用蒙版的形状将越透明。


2. 案例

其中蒙版由两个具有不同颜色(#ffffff和#66666)的矩形组成。蒙版用于单个矩形,因此运行效果可以使用蒙版查看蒙版中的两个不同形状如何影响相同形状。

<svg width="500" height="120"><defs> <mask id="mask3" x="0" y="0" width="100" height="100" >
   <rect x="0" y="0"  width="100" height="50"         style="stroke:none; fill: #ffffff"/>
   <rect x="0" y="50" width="100" height="50"         style="stroke:none; fill: #666666"/> </mask></defs>
<text x="10" y="55" style="stroke: none; fill: #000000;">  此文本在矩形下方</text>
<rect x="1" y="1" width="100" height="100"   style="stroke: none; fill: #0000ff; mask: url(#mask3)"/> </svg>

运行效果:

image.png


四、在蒙版中使用渐变


如果对用作蒙版的形状应用渐变,则可以实现蒙版所应用的形状的渐变透明度。


使用渐变的蒙版,使用蒙版的矩形以及该矩形下的文本,因此可以看到其透明度如何随着蒙版的渐变而变化。

例:

<svg width="500" height="120"><defs><linearGradient id="gradient1" x1="0%" y1="0%" x2="100%" y2="0%" spreadMethod="pad"><stop offset="0%" stop-color="#ffffff" stop-opacity="1" /><stop offset="100%" stop-color="#000000" stop-opacity="1" /></linearGradient>
<mask id="mask4" x="0" y="0" width="200" height="100"><rect x="0" y="0" width="200" height="100" style="stroke:none; fill: url(#gradient1)" /></mask></defs>
<text x="10" y="55" style="stroke: none; fill: #000000;">此文本在矩形下方</text><rect x="1" y="1" width="200" height="100" style="stroke: none; fill: #FF0000; mask: url(#mask4)" /></svg>

运行效果:

image.png

注:渐变蒙版可以与其他效果(例如填充图案)结合使用。

SVG代码:

<svg width="500" height="120"><defs>
 <linearGradient id="gradient2"               x1="0%"   y1="0%"               x2="100%" y2="0%"               spreadMethod="pad">   <stop offset="0%"   stop-color="#ffffff" stop-opacity="1"/>   <stop offset="100%" stop-color="#000000" stop-opacity="1"/> </linearGradient>
 <pattern id="pattern2"        x="10" y="10" width="20" height="20"        patternUnits="userSpaceOnUse" >
   <circle cx="10" cy="10" r="10" style="stroke: none; fill: #FF0000; " />
 </pattern>
 <mask id="mask6" x="0" y="0" width="200" height="100" >     <rect x="0" y="0"  width="200" height="100"         style="stroke:none; fill: url(#gradient2)"/> </mask></defs>
<text x="10" y="55" style="stroke: none; fill: #000000;">  此文本在矩形下方</text><rect x="1" y="1" width="200" height="100"     style="stroke: none; fill: url(#pattern2); mask: url(#mask6)"/> </svg>

运行效果:

image.png

注:其中可见矩形使用填充图案作为填充,并在其蒙版中使用渐变。


要显示的矩形如何引用其CSS属性中的fill填充图案,以及如何引用其CSS属性中的mask蒙版。


五、在蒙版中使用填充图案


也可以在蒙版中使用填充图案,从而使蒙版成为填充图案的形状。

例:

<svg width="500" height="120"><defs> <pattern id="pattern1"        x="10" y="10" width="20" height="20"        patternUnits="userSpaceOnUse" >
     <circle cx="10" cy="10" r="10" style="stroke: none; fill: #999999" /> </pattern>
 <mask id="mask5" x="0" y="0" width="200" height="100" >   <rect x="0" y="0"  width="200" height="100"       style="stroke:none; fill: url(#pattern1)"/> </mask></defs>
<text x="10" y="55" style="stroke: none; fill: #000000;">  此文本在矩形下方</text><rect x="1" y="1" width="200" height="100"   style="stroke: none; fill: #FF0000; mask: url(#mask5)"/> </svg>

运行效果

image.png

注:矩形现在是半透明的,其中填充图案绘制了圆圈,而在其他位置完全透明。


六、总结


本文基于HTML基础,介绍了SVG中蒙版的应用。定义不同形状的蒙版,设置蒙版的不透明度,蒙版中使用渐变,以及蒙版应用填充图案。都通过项目,进行详细的讲解。


希望能够帮助你更好的学习。

------------------- End -------------------

相关文章
|
5月前
|
Python
Pygame基础11-mask 蒙版
Pygame基础11-mask 蒙版
59 14
|
6月前
|
前端开发
echarts使用transform缩放后导致图标模糊
echarts使用transform缩放后导致图标模糊
|
前端开发 开发者
基于CSS mask-image 实现炫酷图片过渡效果之星球大战
基于CSS mask-image 实现炫酷图片过渡效果之星球大战
173 0
SVG Path(三)弧线命令
SVG Path(三)弧线命令
192 0
|
前端开发
基于CSS mask和clip-path实现切角的技巧1
基于CSS mask和clip-path实现切角的技巧
138 0
|
前端开发
基于CSS mask和clip-path实现切角的技巧2
基于CSS mask和clip-path实现切角的技巧
222 0
|
算法
【图像锐化】非锐化掩模 USM(Unsharpen Mask)与锐化掩模 SM(Sharpen Mask)
> 掩膜操作可以提高图像对比度,对比度提高可以增加图像感官度、锐化,让看起来有点模糊的图像更清晰。 > 原理:提取图像的高频分量,再用一个参数放大之后与原图叠加,这样就产生了一个增强了边缘的图像。 > 提取图像的高频分量的做法有两种: > 1.直接使用高通滤波器,得到高频分量。2.通过低通滤波器,再用原图减去低频就得到了高频信息。
531 0
【图像锐化】非锐化掩模 USM(Unsharpen Mask)与锐化掩模 SM(Sharpen Mask)
CSS3 transform 2D转换之移动 旋转 缩放(详细讲解看完就会)
CSS3 transform 2D转换之移动 旋转 缩放(详细讲解看完就会)
157 0
CSS3 transform 2D转换之移动 旋转 缩放(详细讲解看完就会)
|
前端开发 JavaScript 容器
svg文字与图像
svg文字与图像
svg文字与图像
|
Web App开发 前端开发 JavaScript
CSS mask 实现鼠标跟随镂空效果
CSS mask 实现鼠标跟随镂空效果
CSS mask 实现鼠标跟随镂空效果