aboutsummaryrefslogtreecommitdiff
path: root/files/ja/orphaned
diff options
context:
space:
mode:
authorMasahiro FUJIMOTO <mfujimot@gmail.com>2021-08-18 12:45:41 +0900
committerGitHub <noreply@github.com>2021-08-18 12:45:41 +0900
commit836675e56a890ab21b087d2bcae85aa73457c41c (patch)
treeb63cca8228f155a860b067e7a96398b409fb53ab /files/ja/orphaned
parentc01a85c08973313b08dee7932c0d1b46256a1319 (diff)
downloadtranslated-content-836675e56a890ab21b087d2bcae85aa73457c41c.tar.gz
translated-content-836675e56a890ab21b087d2bcae85aa73457c41c.tar.bz2
translated-content-836675e56a890ab21b087d2bcae85aa73457c41c.zip
orphaned/Web/SVG/Element/solidColor を削除 (#1955)
- 英語版が削除されているため削除
Diffstat (limited to 'files/ja/orphaned')
-rw-r--r--files/ja/orphaned/web/svg/element/solidcolor/index.html84
1 files changed, 0 insertions, 84 deletions
diff --git a/files/ja/orphaned/web/svg/element/solidcolor/index.html b/files/ja/orphaned/web/svg/element/solidcolor/index.html
deleted file mode 100644
index 56480133c7..0000000000
--- a/files/ja/orphaned/web/svg/element/solidcolor/index.html
+++ /dev/null
@@ -1,84 +0,0 @@
----
-title: <solidcolor>
-slug: orphaned/Web/SVG/Element/solidColor
-tags:
- - Element
- - Experimental
- - Reference
- - SVG
-translation_of: Web/SVG/Element/solidColor
-original_slug: Web/SVG/Element/solidColor
----
-<div>{{SVGRef}}{{obsolete_header}}</div>
-
-<p class="seoSummary"><strong><code>&lt;solidcolor&gt;</code></strong> は <a href="/ja/docs/Web/SVG">SVG</a> の要素で、 SVG 文書内の複数の場所で使用する単一の色を定義することができます。パレットの色をアニメーションさせるのにも便利です。</p>
-
-<p class="note"><strong>注:</strong> これは実験的な義jツウであり、まだブラウザーには実装されていません。回避策としては、 {{SVGElement("linearGradient")}} を単一の色経由点で扱うというものがあります。これはあまりすっきりしておらず、 <code>&lt;solidcolor&gt;</code> とは異なり、それ自身をグラデーションの定義に使用することができません。</p>
-
-<h2 id="Usage_context" name="Usage_context">使用場面</h2>
-
-<p>{{svginfo}}</p>
-
-<h2 id="Attributes" name="Attributes">属性</h2>
-
-<h3 id="Global_attributes" name="Global_attributes">グローバル属性</h3>
-
-<ul>
- <li><a href="/ja/docs/Web/SVG/Attribute#Core_attributes">コア属性</a></li>
- <li><a href="/ja/docs/Web/API/GlobalEventHandlers">グローバルイベント属性</a></li>
- <li><a href="/ja/docs/Web/SVG/Attribute#Presentation_attributes">プレゼンテーション属性</a></li>
- <li><a href="/en-US/docs/Web/SVG/Attribute#Style_attributes">スタイル属性</a></li>
-</ul>
-
-<h3 id="Specific_attributes" name="Specific_attributes">固有の属性</h3>
-
-<p><em>なし。</em></p>
-
-<h2 id="DOM_interface" name="DOM_interface">DOM インターフェイス</h2>
-
-<p>この要素は {{domxref("SVGSolidcolorElement")}} インターフェイスを実装しています。</p>
-
-<h2 id="Example" name="Example">例</h2>
-
-<h3 id="SVG">SVG</h3>
-
-<pre class="brush: html notranslate">&lt;svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 200" height="150"&gt;
- &lt;defs&gt;
- &lt;!-- solidColor is experimental. --&gt;
- &lt;solidcolor id="myColor" solid-color="gold" solid-opacity="0.8"/&gt;
-
- &lt;!-- linearGradient with a single color stop is a less elegant way to
- achieve the same effect, but it works in current browsers. --&gt;
- &lt;linearGradient id="myGradient"&gt;
- &lt;stop offset="0" stop-color="green" /&gt;
- &lt;/linearGradient&gt;
- &lt;/defs&gt;
-
- &lt;text x="10" y="20"&gt;Circles colored with solidColor&lt;/text&gt;
- &lt;circle cx="150" cy="65" r="35" stroke-width="2" stroke="url(#myColor)"
- fill="white"/&gt;
- &lt;circle cx="50" cy="65" r="35" fill="url(#myColor)"/&gt;
-
- &lt;text x="10" y="120"&gt;Circles colored with linearGradient&lt;/text&gt;
- &lt;circle cx="150" cy="165" r="35" stroke-width="2" stroke="url(#myGradient)"
- fill="white"/&gt;
- &lt;circle cx="50" cy="165" r="35" fill="url(#myGradient)"/&gt;
-&lt;/svg&gt;
-</pre>
-
-<h3 id="Result" name="Result">結果</h3>
-
-<p>{{EmbedLiveSample("Example")}}</p>
-
-<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの互換性</h2>
-
-<p>{{Compat("svg.elements.solidcolor")}}</p>
-
-<h2 id="See_also" name="See_also">関連情報</h2>
-
-<ul>
- <li>{{domxref("SVGSolidcolorElement")}}</li>
- <li>{{cssxref("solid-color")}}</li>
- <li>{{cssxref("solid-opacity")}}</li>
- <li>{{SVGElement("linearGradient")}}</li>
-</ul>