mask-composite - CSS: Cascading Style Sheets 编辑
The mask-composite
CSS property represents a compositing operation used on the current mask layer with the mask layers below it.
/* Keyword values */
mask-composite: add;
mask-composite: subtract;
mask-composite: intersect;
mask-composite: exclude;
/* Global values */
mask-composite: inherit;
mask-composite: initial;
mask-composite: unset;
Syntax
One or more of the keyword values listed below, separated by commas.
Values
For the composition the current mask layer is referred to as source, while all layers below it are referred to as destination.
add
- The source is placed over the destination.
subtract
- The source is placed, where it falls outside of the destination.
intersect
- The parts of source that overlap the destination, replace the destination.
exclude
- The non-overlapping regions of source and destination are combined.
Formal definition
Initial value | add |
---|---|
Applies to | all elements; In SVG, it applies to container elements excluding the defs element and all graphics elements |
Inherited | no |
Computed value | as specified |
Animation type | discrete |
Formal syntax
<compositing-operator>#where
<compositing-operator> = add | subtract | intersect | exclude
Examples
Compositing mask layers with addition
CSS
#masked {
width: 100px;
height: 100px;
background-color: #8cffa0;
mask-image: url(https://mdn.mozillademos.org/files/12668/MDN.svg),
url(https://mdn.mozillademos.org/files/12676/star.svg);
mask-size: 100% 100%;
mask-composite: add; /* Can be changed in the live sample */
}
HTML
<div id="masked">
</div>
<select id="compositeMode">
<option value="add">add</option>
<option value="subtract">subtract</option>
<option value="intersect">intersect</option>
<option value="exclude">exclude</option>
</select>
JavaScript
var clipBox = document.getElementById("compositeMode");
clipBox.addEventListener("change", function (evt) {
document.getElementById("masked").style.maskComposite = evt.target.value;
});
Result
Specifications
Specification | Status | Comment |
---|---|---|
CSS Masking Module Level 1 The definition of 'mask-composite' in that specification. | Candidate Recommendation | Initial definition |
Browser compatibility
BCD tables only load in the browser
See also
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论