--- title: mask-mode slug: Web/CSS/mask-mode translation_of: Web/CSS/mask-mode ---
{{CSSRef}}{{SeeCompatTable}}

mask-modeCSS属性指示由{{cssxref("mask-image")}} 指向的遮罩被视为亮度或阿尔法遮罩。

/* 关取值的键字 */
mask-mode: alpha;
mask-mode: luminance;
mask-mode: match-source;

/* 多个类型的值 */
mask-mode: alpha, match-source;

/* 全局变量的值 */
mask-mode: inherit;
mask-mode: initial;
mask-mode: unset;

{{cssinfo}}

语法

下面列出 mask-mode 的一个或多个关键字值,以逗号分隔。

Values

alpha
此关键字指示应使用掩码层图像的透明度(阿尔法通道)值作为掩码值。
luminance
此关键字指示掩膜层图像的亮度值应用作掩码值。
match-source

If the {{cssxref("mask-image")}} property is of type <mask-source>, the luminance values of the mask layer image should be used as the mask values.

If it is of type {{cssxref("<image>")}}, the alpha values of the mask layer image should be used as the mask values.

如果{{cssxref("mask-image")}}属性是<mask-source>类型,掩模层图像的亮度值会被作为掩模值。

如果它是类型{{cssxref("<image>")}},掩码层图像的alpha值应用作掩码值。

正式语法

{{csssyntax}}

示例

CSS

#masked {
  width: 227px;
  height: 200px;
  background: blue linear-gradient(red, blue);
  mask-image: url(https://mdn.mozillademos.org/files/12668/MDN.svg);
  mask-mode: alpha; /* Can be changed in the live sample */
}

结果

{{EmbedLiveSample("Example", 240, 240)}}

规范

规范 状态 说明
{{SpecName("CSS Masks", "#the-mask-mode", "mask-mode")}} {{Spec2("CSS Masks")}} Initial definition

浏览器兼容性

{{Compat("css.properties.mask-mode")}}