diff options
author | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:40:17 -0500 |
---|---|---|
committer | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:40:17 -0500 |
commit | 33058f2b292b3a581333bdfb21b8f671898c5060 (patch) | |
tree | 51c3e392513ec574331b2d3f85c394445ea803c6 /files/ja/web/css/paint-order | |
parent | 8b66d724f7caf0157093fb09cfec8fbd0c6ad50a (diff) | |
download | translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.gz translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.bz2 translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.zip |
initial commit
Diffstat (limited to 'files/ja/web/css/paint-order')
-rw-r--r-- | files/ja/web/css/paint-order/index.html | 107 |
1 files changed, 107 insertions, 0 deletions
diff --git a/files/ja/web/css/paint-order/index.html b/files/ja/web/css/paint-order/index.html new file mode 100644 index 0000000000..6ec0316ebf --- /dev/null +++ b/files/ja/web/css/paint-order/index.html @@ -0,0 +1,107 @@ +--- +title: paint-order +slug: Web/CSS/paint-order +tags: + - CSS + - Experimental + - Reference + - SVG + - ウェブ + - 描画順序 +translation_of: Web/CSS/paint-order +--- +<div>{{CSSRef}}{{SeeCompatTable}}</div> + +<p> <strong><code>paint-order</code></strong> は <a href="/ja/docs/Web/CSS">CSS</a> のプロパティで、テキストコンテンツやシェイプが描画されるときの塗りつぶしと輪郭 (およびマーカーの描画) の順序を制御することができます。</p> + +<h2 id="Syntax" name="Syntax">構文</h2> + +<pre class="brush: css no-line-numbers">/* 通常 */ +paint-order: normal; + +/* 単一の値 */ +paint-order: stroke; /* 最初に輪郭、それから塗りつぶしとマーカーを描画 */ +paint-order: markers; /* 最初にマーカー、それから塗りつぶしと輪郭 */ + +/* 複数の値 */ +paint-order: stroke fill; /* 最初に輪郭を、それから塗りつぶしを、そしてマーカーを描く */ +paint-order: markers stroke fill; /* マーカー、輪郭、塗りつぶしの順に描く */ +</pre> + +<p>値が指定されない場合、既定の描画順序は <code>fill</code>, <code>stroke</code>, <code>markers</code> です。</p> + +<p>一つの値で指定されると、それが最初に描画され、続いて他の二つが互いの既定の順序で描画されます。二つの値が指定されると、指定された順序で描画を行い、続いて指定されなかった一つが描画されます。</p> + +<div class="note"> +<p><strong>メモ</strong>: このプロパティの場合、マーカーは <code>marker-*</code> プロパティ (例えば <code><a href="/ja/docs/Web/SVG/Attribute/marker-start">marker-start</a></code>) および <code><a href="/ja/docs/Web/SVG/Element/marker"><marker></a></code> 要素を使用した SVG 図形を描く場合のみ適用されます。 HTML テキストには適用されませんので、その場合は <code>stroke</code> および <code>fill</code> の順序のみが指定できます。</p> +</div> + +<h3 id="Values" name="Values">値</h3> + +<dl> + <dt><code>normal</code></dt> + <dd>様々なアイテムを通常の描画順で描画します。</dd> + <dt><code>stroke</code> (輪郭),<br> + <code>fill</code> (塗りつぶし),<br> + <code>markers</code> (マーカー)</dt> + <dd>これらの一部またはすべての値を用いて、描画したい順序を指定します。</dd> +</dl> + +<h3 id="Formal_syntax" name="Formal_syntax">形式文法</h3> + +<pre class="syntaxbox">{{CSSSyntax}}</pre> + +<h2 id="Examples" name="Examples">例</h2> + +<h3 id="SVG">SVG</h3> + +<pre class="brush: html"><svg xmlns="http://www.w3.org/2000/svg" width="400" height="200"> + <text x="10" y="75">stroke in front</text> + <text x="10" y="150" class="stroke-behind">stroke behind</text> +</svg></pre> + +<h3 id="CSS">CSS</h3> + +<pre class="brush: css">text { + font-family: sans-serif; + font-size: 50px; + font-weight: bold; + fill: black; + stroke: red; + stroke-width: 4px; +} + +.stroke-behind { + paint-order: stroke fill; +}</pre> + +<h3 id="Result" name="Result">結果</h3> + +<p>{{EmbedLiveSample("Examples", "100%", 165)}}</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("SVG2", "painting.html#PaintOrder", "paint-order")}}</td> + <td>{{Spec2("SVG2")}}</td> + <td>初回定義</td> + </tr> + </tbody> +</table> + +<p>{{CSSInfo}}</p> + +<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの互換性</h2> + +<div class="hidden">このページの互換性一覧表は構造化データから生成されています。データに協力していただけるのであれば、 <a class="external" href="https://github.com/mdn/browser-compat-data">https://github.com/mdn/browser-compat-data</a> をチェックアウトしてプルリクエストを送信してください。</div> + +<p>{{Compat("css.properties.paint-order")}}</p> |