使用CSS给图像添加蒙版
我们可以在元素上添加一层来隐藏元素,无论是部分隐藏还是完全隐藏。mask-image属性是一个CSS属性,它指定了在元素上的蒙版层,也可以是一个图像,但我们需要使用该图像的地址来添加蒙版。
在本文中,我们将探讨使用CSS属性给图像添加蒙版,并介绍如何使用同一属性进行更多操作。
给图像添加蒙版
mask-image属性是我们要使用的属性,以便在所需图像或文本上添加蒙版。该属性添加了一个层,可以部分或完全隐藏图像。为了更好地理解该属性,让我们快速看一下属性的语法。
语法
mask-image: none, <image>, initial, inherit;
mask-image属性使用不同的值, none 值将不添加蒙版层,而是在图像或文字上设置透明黑色层。 < image>值可以在线性渐变中添加蒙版。 initial 值将将属性的值设置为其默认值,而 inherit 值将继承该属性在其中使用的元素的最近父级的蒙版属性。
为了更好地理解该属性,我们将看一个示例,以便更清楚地了解mask-image属性的值是如何工作的。
示例
在这个示例中,我们将使用<make-source>
值,并添加图像的地址,以便我们可以在图像上添加蒙版。
在这里,我们创建了一个类container,然后进入CSS部分,我们首先更改了高度和宽度,然后使用mask属性以及我们想要打印的图像。让我们来看一下从代码中得到的输出。
<!DOCTYPE html>
<html lang="en">
<head>
<title>An example of using the make-source property</title>
<style>
.contain {
width: 330px;
height: 330px;
background-image: url(
"https://www.tutorialspoint.com/static/images/simply-easy-learning.jpg"
);
background-size: cover;
background-position: center;
background-repeat: no-repeat;
background-position: center;
-webkit-mask-box-image: url(https://www.tutorialspoint.com/images/logo.png);
}
body {
background-color: white;
}
</style>
</head>
<body>
<div class="contain"></div>
</body>
</html>
这是我们将要得到的输出,你可以看到使用属性mask-image之后,图像现在被遮罩了。
现在我们将在另一个示例中使用一个新的属性值,让我们继续查看下一个示例。
示例
在这个示例中,我们将使用mask-image属性,并将其值设置为线性渐变,现在让我们查看代码,了解这个属性的工作原理。
<!DOCTYPE html>
<html lang="en">
<head>
<title>Example of using mask-image property</title>
<style>
.container {
height: 130px;
width: 130px;
background-image: url(
"https://www.tutorialspoint.com/coffeescript/images/coffeescript-mini-logo.jpg");
background-position: center;
background-size: cover;
-webkit-mask-image: linear-gradient(
to top, transparent 19%, black 81%);
background-repeat: no-repeat;
mask-image: linear-gradient(
to top, transparent 19%, black 21%
);
}
body {
background-color: white;
}
</style>
</head>
<body>
<div class="container"></div>
</body>
</html>
在上面的代码中,我们首先创建了一个容器,然后在CSS部分中改变了它的高度和宽度。之后,我们添加了我们想要应用遮罩的图像,并使用了mask-image属性,将其值设置为线性渐变。在这里,我们将颜色黑色设置为81%,透明设置为20%。让我们快速查看上面的代码。
在上面的示例中,您可以看到图像从底部透明,这意味着遮罩已应用于图像。
注意 - 如果将线性渐变中的黑色值设置为100%,则用户将完全看到我们所拥有的图像,如果将透明度设置为100%,则图像将完全被遮罩隐藏。
示例
在下面的示例中,我们将属性的值更改为径向渐变,这意味着遮罩现在将以圆形形式添加,代码的其他组件相似。让我们看一下通过使用下面的代码将获得的输出。
<!DOCTYPE html>
<html lang="en">
<head>
<title>Another example for the image-mask property</title>
<style>
.mask2 {
mask-image: radial-gradient(circle, black 50%, rgba(0, 0, 0, 0.5) 50%);
-webkit-mask-image: radial-gradient(circle, black 49%, rgba(0, 0, 0, 0.5) 50%);
}
</style>
</head>
<body>
<h1>This is an example of the mask-image property</h1>
<h3>We are using the gradient value</h3>
<div class="mask2">
<img src="https://www.tutorialspoint.com/images/logo.png" width="600" height="400">
</div>
</body>
</html>
执行上述程序后,您可以看到掩码呈圆形,因为图像的某些部分是透明的,而其他部分是暗的。
为什么要使用-webkit前缀
我们使用-webkit前缀是因为大多数浏览器对我们今天使用的掩码的支持是部分的。我们将-webkit前缀与标准属性一起使用,以使其与所有浏览器兼容。
结论
在CSS中,掩码可以部分或完全隐藏属性,具体取决于与属性一起使用的值。掩码可以像mask-clip、mask-image、mask-mode、mask-origin等一样使用。掩码属性可在图像或文本上设置掩码,我们甚至可以更改要应用的掩码的形状。掩码将应用于图像,以使用户更沉浸其中,或者隐藏图像的某些部分。