blob: a4f99606b28bb1beb7283526c20df58a2f110f74 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
|
---
title: mask-mode
slug: Web/CSS/mask-mode
tags:
- CSS
- CSS Masking
- CSS Property
- Experimental
- Reference
- 'recipe:css-property'
translation_of: Web/CSS/mask-mode
---
<div>{{CSSRef}}</div>
<p><a href="/ja/docs/Web/CSS">CSS</a> の <strong><code>mask-mode</code></strong> プロパティは、 {{cssxref("mask-image")}} で定義されたマスクを、明度とアルファマスクのどちらで扱うかを設定します。</p>
<pre class="brush:css no-line-numbers notranslate">/* キーワード値 */
mask-mode: alpha;
mask-mode: luminance;
mask-mode: match-source;
/* 複数の値 */
mask-mode: alpha, match-source;
/* グローバル値 */
mask-mode: inherit;
mask-mode: initial;
mask-mode: unset;
</pre>
<h2 id="Syntax" name="Syntax">構文</h2>
<p><code>mask-mode</code> プロパティは、以下に示す1つ又は複数のキーワード値を、カンマで区切って指定します。</p>
<h3 id="Values" name="Values">値</h3>
<dl>
<dt><code>alpha</code></dt>
<dd>このキーワードは、マスクレイヤーの透過性 (アルファチャンネル) の値をマスクの値として使用することを示します。</dd>
<dt><code>luminance</code></dt>
<dd>このキーワードは、マスクレイヤーの明度の値をマスクの値として使用することを示します。</dd>
<dt><code>match-source</code></dt>
<dd>
<p>{{cssxref("mask-image")}} プロパティが <code><mask-source></code> 型であれば、マスクレイヤー画像の明度の値がマスクの値として使用されます。</p>
<p>{{cssxref("<image>")}} 型であれば、マスクレイヤー画像のアルファ値がマスクの値として使用されます。</p>
</dd>
</dl>
<h2 id="Formal_definition" name="Formal_definition">公式定義</h2>
<p>{{cssinfo}}</p>
<h2 id="Formal_syntax" name="Formal_syntax">形式文法</h2>
{{csssyntax}}
<h2 id="Examples" name="Examples">例</h2>
<h3 id="Using_alpha_mask_mode" name="Using_alpha_mask_mode">アルファマスクモードの使用</h3>
<h4 id="CSS">CSS</h4>
<pre class="brush: css; highlight[6] notranslate">#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; /* ライブサンプルで変更することができます */
}
</pre>
<div class="hidden">
<h4 id="HTML">HTML</h4>
<pre class="brush: html notranslate"><div id="masked">
</div>
<select id="maskMode">
<option value="alpha">alpha</option>
<option value="luminance">luminance</option>
<option value="match-source">match-source</option>
</select>
</pre>
<h4 id="JavaScript">JavaScript</h4>
<pre class="brush: js notranslate">var maskMode = document.getElementById("maskMode");
maskMode.addEventListener("change", function (evt) {
document.getElementById("masked").style.maskMode = evt.target.value;
});
</pre>
</div>
<h3 id="Result" name="Result">結果</h3>
<p>{{EmbedLiveSample("Using_alpha_mask_mode", 240, 240)}}</p>
<h2 id="Specifications" name="Specifications">仕様書</h2>
<table class="standard-table">
<thead>
<tr>
<th scope="col">仕様書</th>
<th scope="col">状態</th>
<th scope="col">備考</th>
</tr>
</thead>
<tbody>
<tr>
<td>{{SpecName("CSS Masks", "#the-mask-mode", "mask-mode")}}</td>
<td>{{Spec2("CSS Masks")}}</td>
<td>初回定義</td>
</tr>
</tbody>
</table>
<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの互換性</h2>
<p>{{Compat("css.properties.mask-mode")}}</p>
|