From 33058f2b292b3a581333bdfb21b8f671898c5060 Mon Sep 17 00:00:00 2001 From: Peter Bengtsson Date: Tue, 8 Dec 2020 14:40:17 -0500 Subject: initial commit --- files/ja/web/css/mask-composite/index.html | 122 +++++++++++++++++++++++++++++ 1 file changed, 122 insertions(+) create mode 100644 files/ja/web/css/mask-composite/index.html (limited to 'files/ja/web/css/mask-composite') diff --git a/files/ja/web/css/mask-composite/index.html b/files/ja/web/css/mask-composite/index.html new file mode 100644 index 0000000000..9465a137b6 --- /dev/null +++ b/files/ja/web/css/mask-composite/index.html @@ -0,0 +1,122 @@ +--- +title: mask-composite +slug: Web/CSS/mask-composite +tags: + - CSS + - CSS Masking + - CSS Property + - Experimental + - Reference + - 'recipe:css-property' +translation_of: Web/CSS/mask-composite +--- +
{{CSSRef}}
+ +

mask-compositeCSS のプロパティで、現在のマスクレイヤーとその下のマスクレイヤーとの間で使われる合成操作を表します。

+ +
/* キーワード値 */
+mask-composite: add;
+mask-composite: subtract;
+mask-composite: intersect;
+mask-composite: exclude;
+
+/* グローバル値 */
+mask-composite: inherit;
+mask-composite: initial;
+mask-composite: unset;
+
+ +

構文

+ +

以下に示す1つまたは複数のキーワード値を、カンマで区切って指定します。

+ +

+ +

混合において、現在のマスクレイヤーは source、その下にあるすべてのマスクレイヤーは destination とします。

+ +
+
add
+
source が destination の上に配置されます。
+
subtract
+
destination の外側に source が配置されます。
+
intersect
+
destination と重なっている source の部分が destination を置き換えます。
+
exclude
+
source と destination で重なっていない領域が結合されます。
+
+ +

公式定義

+ +

{{cssinfo}}

+ +

形式文法

+ +
{{csssyntax}}
+ +

+ +

追加でマスクレイヤーの合成

+ +

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 */
+}
+
+ + + +

結果

+ +

{{EmbedLiveSample("Compositing_mask_layers_with_addition", "100px", "130px")}}

+ +

仕様書

+ + + + + + + + + + + + + + + + +
仕様書状態備考
{{SpecName("CSS Masks", "#the-mask-composite", "mask-composite")}}{{Spec2("CSS Masks")}}初回定義
+ +

ブラウザーの互換性

+ + + +

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

-- cgit v1.2.3-54-g00ecf