aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/css/mask-composite/index.md
diff options
context:
space:
mode:
authorMasahiro FUJIMOTO <mfujimot@gmail.com>2021-11-10 02:36:52 +0900
committerMasahiro FUJIMOTO <mfujimot@gmail.com>2021-11-20 22:35:37 +0900
commitb6ef6d47830a2e326211e670174fe1955ad31fa7 (patch)
tree8f25d8d47ae30ddfb8beb325f0b070f16bc05390 /files/ja/web/css/mask-composite/index.md
parent684f3a1f7c141b4d1c522687062ff0e6e2e1a080 (diff)
downloadtranslated-content-b6ef6d47830a2e326211e670174fe1955ad31fa7.tar.gz
translated-content-b6ef6d47830a2e326211e670174fe1955ad31fa7.tar.bz2
translated-content-b6ef6d47830a2e326211e670174fe1955ad31fa7.zip
CSS Masking に関するプロパティの記事を更新
- 2021/11/10 時点の英語版に同期
Diffstat (limited to 'files/ja/web/css/mask-composite/index.md')
-rw-r--r--files/ja/web/css/mask-composite/index.md133
1 files changed, 43 insertions, 90 deletions
diff --git a/files/ja/web/css/mask-composite/index.md b/files/ja/web/css/mask-composite/index.md
index a41474ae08..2e530623e8 100644
--- a/files/ja/web/css/mask-composite/index.md
+++ b/files/ja/web/css/mask-composite/index.md
@@ -3,18 +3,20 @@ title: mask-composite
slug: Web/CSS/mask-composite
tags:
- CSS
- - CSS Masking
- - CSS Property
+ - CSS マスク
+ - CSS プロパティ
- Experimental
- - Reference
- - 'recipe:css-property'
+ - リファレンス
+ - recipe:css-property
+browser-compat: css.properties.mask-composite
translation_of: Web/CSS/mask-composite
---
-<div>{{CSSRef}}</div>
+{{CSSRef}}
-<p><strong><code>mask-composite</code></strong> は <a href="/ja/docs/Web/CSS">CSS</a> のプロパティで、現在のマスクレイヤーとその下のマスクレイヤーとの間で使われる合成操作を表します。</p>
+**`mask-composite`** は [CSS](/ja/docs/Web/CSS) のプロパティで、現在のマスクレイヤーとその下のマスクレイヤーとの間で使われる合成操作を表します。
-<pre class="brush:css no-line-numbers notranslate">/* キーワード値 */
+```css
+/* キーワード値 */
mask-composite: add;
mask-composite: subtract;
mask-composite: intersect;
@@ -23,98 +25,49 @@ mask-composite: exclude;
/* グローバル値 */
mask-composite: inherit;
mask-composite: initial;
+mask-composite: revert;
mask-composite: unset;
-</pre>
+```
-<h2 id="Syntax" name="Syntax">構文</h2>
+## 構文
-<p>以下に示す1つまたは複数のキーワード値を、カンマで区切って指定します。</p>
+以下に示す 1 つまたは複数のキーワード値を、カンマで区切って指定します。
-<h3 id="Values" name="Values">値</h3>
+### 値
-<p>混合において、現在のマスクレイヤーは <em>source</em>、その下にあるすべてのマスクレイヤーは <em>destination</em> とします。</p>
+混合において、現在のマスクレイヤーは _source_、その下にあるすべてのマスクレイヤーは _destination_ とします。
-<dl>
- <dt><code>add</code></dt>
- <dd>source が destination の上に配置されます。</dd>
- <dt><code>subtract</code></dt>
- <dd>destination の外側に source が配置されます。</dd>
- <dt><code>intersect</code></dt>
- <dd>destination と重なっている source の部分が destination を置き換えます。</dd>
- <dt><code>exclude</code></dt>
- <dd>source と destination で重なっていない領域が結合されます。</dd>
-</dl>
+- `add`
+ - : source が destination の上に配置されます。
+- `subtract`
+ - : destination の外側に source が配置されます。
+- `intersect`
+ - : destination と重なっている source の部分が destination を置き換えます。
+- `exclude`
+ - : source と destination で重なっていない領域が結合されます。
-<h2 id="Formal_definition" name="Formal_definition">公式定義</h2>
+## 公式定義
-<p>{{cssinfo}}</p>
+{{cssinfo}}
-<h2 id="Formal_syntax" name="Formal_syntax">形式文法</h2>
+## 形式文法
{{csssyntax}}
-<h2 id="Examples" name="Examples">例</h2>
-
-<h3 id="Compositing_mask_layers_with_addition" name="Compositing_mask_layers_with_addition">追加でマスクレイヤーの合成</h3>
-
-<h4 id="CSS">CSS</h4>
-
-<pre class="brush: css; highlight[7] notranslate">#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 */
-}
-</pre>
-
-<div class="hidden">
-<h4 id="HTML">HTML</h4>
-
-<pre class="brush: html notranslate">&lt;div id="masked"&gt;
-&lt;/div&gt;
-&lt;select id="compositeMode"&gt;
- &lt;option value="add"&gt;add&lt;/option&gt;
- &lt;option value="subtract"&gt;subtract&lt;/option&gt;
- &lt;option value="intersect"&gt;intersect&lt;/option&gt;
- &lt;option value="exclude"&gt;exclude&lt;/option&gt;
-&lt;/select&gt;
-</pre>
-
-<h4 id="JavaScript">JavaScript</h4>
-
-<pre class="brush: js notranslate">var clipBox = document.getElementById("compositeMode");
-clipBox.addEventListener("change", function (evt) {
- document.getElementById("masked").style.maskComposite = evt.target.value;
-});
-</pre>
-</div>
-
-<h4 id="Result" name="Result">結果</h4>
-
-<p>{{EmbedLiveSample("Compositing_mask_layers_with_addition", "100px", "130px")}}</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-composite", "mask-composite")}}</td>
- <td>{{Spec2("CSS Masks")}}</td>
- <td>初回定義</td>
- </tr>
- </tbody>
-</table>
-
-<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの互換性</h2>
-
-<p>{{Compat("css.properties.mask-composite")}}</p>
+## 例
+
+### マスクレイヤーを加算で合成
+
+{{EmbedGHLiveSample("css-examples/masking/mask-composite.html", '100%', 550)}}
+
+## 仕様書
+
+{{Specifications}}
+
+## ブラウザーの互換性
+
+{{Compat}}
+
+## 関連情報
+
+- [Clipping and Masking in CSS](https://css-tricks.com/clipping-masking-css/)