CSS 遮罩 - mask-border-source 属性



CSS 属性 mask-border-source 设置用于创建元素的遮罩边框 的源图像。

可以使用 mask-border-slice CSS 属性将此源图像划分为不同的区域。

可能的值

CSS 属性 mask-border-source 可以具有以下值

  • none:不应用遮罩边框。

  • <image>:要用于遮罩边框的图像的引用。

应用于

所有 HTML 元素。在 SVG 中,它应用于容器元素,但不包括 <defs> 元素和所有图形元素

语法

/* Keyword value */
mask-border-source = none;

/* <image> values */
mask-border-source = url(<image-filename>);
mask-border-source = linear-gradient(to bottom, red, yellow);

注意:基于 Chromium 的浏览器支持此属性 mask-box-image-source 的旧版本,并带有前缀,即 -webkit

-webkit-mask-border-source = url(image.png);

CSS mask-border-source - 基本示例

以下示例演示了 CSS 属性 mask-border-source 的用法,其中将图像作为遮罩边框传递,使用 url(),并将其应用为元素的遮罩边框。

<html>
<head>
<style>
   .with-mask {
      -webkit-mask-box-image-source: url("images/logo.png");
      -webkit-mask-box-image-slice:   20 fill;
      -webkit-mask-box-image-width:   25px;            /* width */
      -webkit-mask-box-image-outset:   2px;               /* outset */
      -webkit-mask-box-image-repeat:   repeat;            /* repeat */
      
   
      mask-border-source: url("images/logo.png");
      mask-border-slice: 20 fill;       /* slice */
      mask-border-width: 25px;           /* width */
      mask-border-outset: 2px;            /* outset */
      mask-border-repeat: repeat;          /* repeat */
  }
</style>
</head>
<body>
   <h1>The mask-border-source Property</h1>

   <h3>With mask-border-source</h3>
   <div class="with-mask">
   <img src="images/scenery2.jpg" alt="mask border image" width="300" height="200">
   </div>

   <h3>Without mask-border-source</h3>
   <img src="images/scenery2.jpg" alt="mask border image" width="300" height="200">
</body>
</html>
广告