diff options
author | Masahiro FUJIMOTO <mfujimot@gmail.com> | 2021-11-06 11:17:40 +0900 |
---|---|---|
committer | Masahiro FUJIMOTO <mfujimot@gmail.com> | 2021-11-15 01:41:04 +0900 |
commit | 4c212053deaca3391b1d0be8a0a3bcde7a560aa8 (patch) | |
tree | 843d975dfb964f3de066b3398b276d2f693f01fe /files/ja/web/css/background-blend-mode/index.md | |
parent | f0c088798e51af482a21bbd9ae79097a10274ddc (diff) | |
download | translated-content-4c212053deaca3391b1d0be8a0a3bcde7a560aa8.tar.gz translated-content-4c212053deaca3391b1d0be8a0a3bcde7a560aa8.tar.bz2 translated-content-4c212053deaca3391b1d0be8a0a3bcde7a560aa8.zip |
合成と混合の各文書を更新
- 2021/11/05 時点の英語版に同期
Diffstat (limited to 'files/ja/web/css/background-blend-mode/index.md')
-rw-r--r-- | files/ja/web/css/background-blend-mode/index.md | 143 |
1 files changed, 73 insertions, 70 deletions
diff --git a/files/ja/web/css/background-blend-mode/index.md b/files/ja/web/css/background-blend-mode/index.md index 671ade8f21..4b1535d001 100644 --- a/files/ja/web/css/background-blend-mode/index.md +++ b/files/ja/web/css/background-blend-mode/index.md @@ -4,23 +4,23 @@ slug: Web/CSS/background-blend-mode tags: - CSS - CSS プロパティ - - Reference - 合成と混合 + - recipe:css-property +browser-compat: css.properties.background-blend-mode translation_of: Web/CSS/background-blend-mode --- -<div>{{CSSRef}}</div> +{{CSSRef}} -<p><a href="/ja/docs/Web/CSS">CSS</a> の <strong><code>background-blend-mode</code></strong> プロパティは、要素の背景画像を互いに、または要素の背景色と、どのように混合するかを設定します。</p> +**`background-blend-mode`** は [CSS](/ja/docs/Web/CSS) のプロパティで、要素の背景画像が相互にどのように混合されるか、また要素の背景色とどのように混合されるかを設定します。 -<div>{{EmbedInteractiveExample("pages/css/background-blend-mode.html")}}</div> +{{EmbedInteractiveExample("pages/css/background-blend-mode.html")}} -<p class="hidden">このデモのソースファイルは GitHub リポジトリに格納されています。デモプロジェクトに協力したい場合は、 <a href="https://github.com/mdn/interactive-examples">https://github.com/mdn/interactive-examples</a> をクローンしてプルリクエストを送信してください。</p> +混合モードは {{cssxref("background-image")}} プロパティと同じ順番で定義してください。混合モードのリストと背景画像のリストの長さが異なる場合は、長さが合うまで繰り返しや切り落としが行われます。 -<p>混合モードは {{cssxref("background-image")}} プロパティと同じ順番で定義してください。混合モードのリストと背景画像のリストの長さが異なる場合は、長さが合うまで繰り返しや短縮が行われます。</p> +## 構文 -<h2 id="Syntax" name="Syntax">構文</h2> - -<pre class="brush:css no-line-numbers">/* 1 値 */ +``` +/* 1 値 */ background-blend-mode: normal; /* 2 値、背景ごとにひとつずつ */ @@ -29,84 +29,87 @@ background-blend-mode: darken, luminosity; /* グローバル値 */ background-blend-mode: initial; background-blend-mode: inherit; +background-blend-mode: revert; background-blend-mode: unset; -</pre> +``` + +### 値 -<h3 id="Values" name="Values">値</h3> +- {{cssxref("<blend-mode>")}} + - : 適用する混合モードです。複数の値をカンマ区切りで置くことができます。 -<dl> - <dt>{{cssxref("<blend-mode>")}}</dt> - <dd>適用する混合モードです。複数の値をコンマ区切りで置くことができます。</dd> -</dl> +## Formal definition -<h3 id="Formal_syntax" name="Formal_syntax">形式文法</h3> +{{cssinfo}} + +## Formal syntax {{csssyntax}} -<h2 id="Examples" name="Examples">例</h2> - -<pre class="brush: html hidden"><div id="div"></div> -<select id="select"> - <option>normal</option> - <option>multiply</option> - <option selected>screen</option> - <option>overlay</option> - <option>darken</option> - <option>lighten</option> - <option>color-dodge</option> - <option>color-burn</option> - <option>hard-light</option> - <option>soft-light</option> - <option>difference</option> - <option>exclusion</option> - <option>hue</option> - <option>saturation</option> - <option>color</option> - <option>luminosity</option> -</select></pre> - -<pre class="brush: css hidden">#div { +<h2 id="Examples">例</h2> + +### 基本的な例 + +```css +.item { + width: 300px; + height: 300px; + background: url('image1.png'),url('image2.png'); + background-blend-mode: screen; +} +``` + +### 様々な混合モードを試してみる + +```html hidden +<div id="div"></div> +<select id="select"> + <option>normal</option> + <option>multiply</option> + <option selected>screen</option> + <option>overlay</option> + <option>darken</option> + <option>lighten</option> + <option>color-dodge</option> + <option>color-burn</option> + <option>hard-light</option> + <option>soft-light</option> + <option>difference</option> + <option>exclusion</option> + <option>hue</option> + <option>saturation</option> + <option>color</option> + <option>luminosity</option> +</select> +``` + +```css hidden +#div { width: 300px; height: 300px; - background: url('https://mdn.mozillademos.org/files/8543/br.png'),url('https://mdn.mozillademos.org/files/8545/tr.png'); + background: url('br.png'),url('tr.png'); background-blend-mode: screen; -}</pre> +} +``` -<pre class="brush: js hidden">document.getElementById("select").onchange = function(event) { +```js hidden +document.getElementById("select").onchange = function(event) { document.getElementById("div").style.backgroundBlendMode = document.getElementById("select").selectedOptions[0].innerHTML; } -console.log(document.getElementById('div'));</pre> - -<p>{{ EmbedLiveSample('Examples', "330", "330") }}</p> +console.log(document.getElementById('div')); +``` -<h2 id="Specifications" name="Specifications">仕様書</h2> +{{ EmbedLiveSample('Examples', "330", "350") }} -<table class="standard-table"> - <thead> - <tr> - <th scope="col">仕様書</th> - <th scope="col">状態</th> - <th scope="col">備考</th> - </tr> - </thead> - <tbody> - <tr> - <td>{{ SpecName('Compositing', '#background-blend-mode', 'background-blend-mode') }}</td> - <td>{{ Spec2('Compositing') }}</td> - <td>初回定義</td> - </tr> - </tbody> -</table> +## 仕様書 -<p>{{cssinfo}}</p> +{{Specifications}} -<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの対応</h2> +## ブラウザーの互換性 -<p>{{Compat("css.properties.background-blend-mode")}}</p> +{{Compat}} -<h2 id="See_also" name="See_also">関連情報</h2> +## 関連情報 -<ul> - <li>{{cssxref("<blend-mode>")}}</li> - <li>{{cssxref("mix-blend-mode")}}</li> -</ul> +- {{cssxref("<blend-mode>")}} +- {{cssxref("mix-blend-mode")}} |