diff options
author | Masahiro FUJIMOTO <mfujimot@gmail.com> | 2021-10-19 01:01:30 +0900 |
---|---|---|
committer | Masahiro FUJIMOTO <mfujimot@gmail.com> | 2021-10-26 23:18:24 +0900 |
commit | a82c0981dd5e70c6557dc946df97d0b5aebd6d6c (patch) | |
tree | bedacc63760c1f591899efe1cee93b63107cec80 /files/ja/web | |
parent | df6bd536b03c31c97e2d9998a4f7e1b56133fcfe (diff) | |
download | translated-content-a82c0981dd5e70c6557dc946df97d0b5aebd6d6c.tar.gz translated-content-a82c0981dd5e70c6557dc946df97d0b5aebd6d6c.tar.bz2 translated-content-a82c0981dd5e70c6557dc946df97d0b5aebd6d6c.zip |
Web/SVG/Attribute/stop-color を新規翻訳
- 2021/10/19 時点の英語版に同期
Diffstat (limited to 'files/ja/web')
-rw-r--r-- | files/ja/web/svg/attribute/stop-color/index.md | 93 |
1 files changed, 93 insertions, 0 deletions
diff --git a/files/ja/web/svg/attribute/stop-color/index.md b/files/ja/web/svg/attribute/stop-color/index.md new file mode 100644 index 0000000000..d4ad9b816c --- /dev/null +++ b/files/ja/web/svg/attribute/stop-color/index.md @@ -0,0 +1,93 @@ +--- +title: stop-color +slug: Web/SVG/Attribute/stop-color +tags: + - NeedsExample + - SVG + - SVG 属性 +browser-compat: svg.attributes.presentation.stop-color +translation_of: Web/SVG/Attribute/stop-color +--- +{{SVGRef}} + +**`stop-color`** 属性は、グラデーションの色停止点で使用する色を示します。 + +> **Note:** グラデーションに関して、SVG は `transparent` キーワードを CSS とは異なる方法で扱います。SVG はグラデーションを事前に乗算された空間で計算しないので、`transparent` は実際には透明な黒を意味します。そのため、`stop-color` に `transparent` という値を指定することは、`stop-color` に `black` という値を指定し、{{SVGAttr("stop-opacity")}} に `0` という値を指定することと同じです。 + +> **Note:** プレゼンテーション属性である `stop-color` は、CSS プロパティとして使用することができます。 + +この属性は以下の SVG 要素で使用することができます。 + +* {{SVGElement("stop")}} + +## 使用上のメモ + +<table class="properties"> + <tbody> + <tr> + <th scope="row">値</th> + <td> + <code>currentcolor</code> | + {{cssxref("color_value", "<color>")}} + <code + ><a href="/en-US/docs/Web/SVG/Content_type#icccolor" + ><icccolor></a + ></code + > + </td> + </tr> + <tr> + <th scope="row">既定値</th> + <td><code>black</code></td> + </tr> + <tr> + <th scope="row">アニメーション</th> + <td>可</td> + </tr> + </tbody> +</table> + +* `currentcolor` + * : このキーワードは、現在の塗りつぶしの色を表し、 [`<paint>`](/en-US/docs/Web/SVG/Content_type#paint) の指定の中で、{{SVGAttr("fill")}} および {{SVGAttr("stroke")}} 属性と同じ方法で指定することができます。 +* `<color>` + * : この値は色の値を示します。 +* `<icccolor>` + * : この値は ICC カラープロファイルを参照します。 + +## 仕様書 + +<table class="no-markdown"> + <thead> + <tr> + <th scope="col">仕様書</th> + <th scope="col">状態</th> + <th scope="col">備考</th> + </tr> + </thead> + <tbody> + <tr> + <td> + {{SpecName("SVG2", "pservers.html#StopColorProperty", "stop-color")}} + </td> + <td>{{Spec2("SVG2")}}</td> + <td> + SVG では <code>transparent</code> キーワードが CSS とは異なる扱いになるというメモを追加。 + </td> + </tr> + <tr> + <td> + {{SpecName("SVG1.1", "pservers.html#StopColorProperty", "stop-color")}} + </td> + <td>{{Spec2("SVG1.1")}}</td> + <td>初回定義</td> + </tr> + </tbody> +</table> + +## ブラウザーの互換性 + +{{Compat}} + +## 関連情報 + +* {{SVGAttr("stop-opacity")}} |