aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/svg/attribute/cy
diff options
context:
space:
mode:
authorPeter Bengtsson <mail@peterbe.com>2020-12-08 14:40:17 -0500
committerPeter Bengtsson <mail@peterbe.com>2020-12-08 14:40:17 -0500
commit33058f2b292b3a581333bdfb21b8f671898c5060 (patch)
tree51c3e392513ec574331b2d3f85c394445ea803c6 /files/ja/web/svg/attribute/cy
parent8b66d724f7caf0157093fb09cfec8fbd0c6ad50a (diff)
downloadtranslated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.gz
translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.bz2
translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.zip
initial commit
Diffstat (limited to 'files/ja/web/svg/attribute/cy')
-rw-r--r--files/ja/web/svg/attribute/cy/index.html172
1 files changed, 172 insertions, 0 deletions
diff --git a/files/ja/web/svg/attribute/cy/index.html b/files/ja/web/svg/attribute/cy/index.html
new file mode 100644
index 0000000000..a5a891aad3
--- /dev/null
+++ b/files/ja/web/svg/attribute/cy/index.html
@@ -0,0 +1,172 @@
+---
+title: cy
+slug: Web/SVG/Attribute/cy
+tags:
+ - SVG
+ - SVG Attribute
+translation_of: Web/SVG/Attribute/cy
+---
+<div>{{SVGRef}}</div>
+
+<p><strong><code>cy</code></strong>属性は中心のy-座標を定義します。</p>
+
+<p>3つの要素がこの属性を用います: {{SVGElement("circle")}}, {{SVGElement("ellipse")}}, {{SVGElement("radialGradient")}}</p>
+
+<div id="topExample">
+<div class="hidden">
+<pre class="brush: css">html,body,svg { height:100% }</pre>
+</div>
+
+<pre class="brush: html">&lt;svg viewBox="0 0 100 300" xmlns="http://www.w3.org/2000/svg"&gt;
+ &lt;radialGradient cy="25%" id="myGradient"&gt;
+ &lt;stop offset="0" stop-color="white" /&gt;
+ &lt;stop offset="100%" stop-color="black" /&gt;
+ &lt;/radialGradient&gt;
+
+  &lt;circle cy="50" cx="50" r="45"/&gt;
+ &lt;ellipse cy="150" cx="50" rx="45" ry="25" /&gt;
+ &lt;rect x="5" y="205" width="90" height="90" fill="url(#myGradient)" /&gt;
+&lt;/svg&gt;</pre>
+
+<p>{{EmbedLiveSample('topExample', '100%', 300)}}</p>
+</div>
+
+<h2 id="circle" name="circle">circle</h2>
+
+<p>{{SVGElement('circle')}}に対して、<code>cy</code>は、図形のy-軸の中心を定義します。</p>
+
+<table class="standard-table">
+ <tbody>
+ <tr>
+ <th scope="row">値</th>
+ <td><strong><a href="/docs/Web/SVG/Content_type#Length">&lt;length&gt;</a></strong> | <strong><a href="/docs/Web/SVG/Content_type#Percentage">&lt;percentage&gt;</a></strong></td>
+ </tr>
+ <tr>
+ <th scope="row">既定値</th>
+ <td><code>0</code></td>
+ </tr>
+ <tr>
+ <th scope="row">アニメーション可否</th>
+ <td>はい</td>
+ </tr>
+ </tbody>
+</table>
+
+<p class="note"><strong>注:</strong> SVG2として開始する場合には、<code>cy</code>は<em>ジオメトリプロパティ</em>です。これは本属性が円へのCSSプロパティとしても利用可能であることを意味します。</p>
+
+<h2 id="ellipse" name="ellipse">ellipse</h2>
+
+<p>{{SVGElement('ellipse')}}に対して、<code>cy</code>は図形中心のy-座標を定義します。</p>
+
+<table class="standard-table">
+ <tbody>
+ <tr>
+ <th scope="row">値</th>
+ <td><strong><a href="/docs/Web/SVG/Content_type#Length">&lt;length&gt;</a></strong> | <strong><a href="/docs/Web/SVG/Content_type#Percentage">&lt;percentage&gt;</a></strong></td>
+ </tr>
+ <tr>
+ <th scope="row">既定値</th>
+ <td><code>0</code></td>
+ </tr>
+ <tr>
+ <th scope="row">アニメーション可否</th>
+ <td>はい</td>
+ </tr>
+ </tbody>
+</table>
+
+<p class="note"><strong>注:</strong> SVG2として開始する場合には、<code>cy</code>は<em>ジオメトリプロパティ</em>です。これは本属性が円へのCSSプロパティとしても利用可能であることを意味します。</p>
+
+<h2 id="radialGradient" name="radialGradient">radialGradient</h2>
+
+<p>{{SVGElement('radialGradient')}}に対して、<code>cy</code>は、放射状勾配の終端円のy-座標を定義します。</p>
+
+<table class="standard-table">
+ <tbody>
+ <tr>
+ <th scope="row">値</th>
+ <td><strong><a href="/docs/Web/SVG/Content_type#Length">&lt;length&gt;</a></strong></td>
+ </tr>
+ <tr>
+ <th scope="row">既定値</th>
+ <td><code>50%</code></td>
+ </tr>
+ <tr>
+ <th scope="row">アニメーション可否</th>
+ <td>はい</td>
+ </tr>
+ </tbody>
+</table>
+
+<h4 id="Example" name="Example">例</h4>
+
+<div class="hidden">
+<pre class="brush: css">html,body,svg { height:100% }</pre>
+</div>
+
+<pre class="brush: html">&lt;svg viewBox="0 0 34 10" xmlns="http://www.w3.org/2000/svg"&gt;
+ &lt;defs&gt;
+ &lt;radialGradient cy="0" id="myGradient000"&gt;
+ &lt;stop offset="0%" stop-color="gold" /&gt;
+ &lt;stop offset="50%" stop-color="green" /&gt;
+ &lt;stop offset="100%" stop-color="white" /&gt;
+ &lt;/radialGradient&gt;
+
+ &lt;radialGradient cy="50%" id="myGradient050"&gt;
+ &lt;stop offset="0%" stop-color="gold" /&gt;
+ &lt;stop offset="50%" stop-color="green" /&gt;
+ &lt;stop offset="100%" stop-color="white" /&gt;
+ &lt;/radialGradient&gt;
+
+ &lt;radialGradient cy="100%" id="myGradient100"&gt;
+ &lt;stop offset="0%" stop-color="gold" /&gt;
+ &lt;stop offset="50%" stop-color="green" /&gt;
+ &lt;stop offset="100%" stop-color="white" /&gt;
+ &lt;/radialGradient&gt;
+ &lt;/defs&gt;
+
+  &lt;rect x="1" y="1" width="8" height="8" fill="url(#myGradient000)" stroke="black" /&gt;
+  &lt;rect x="13" y="1" width="8" height="8" fill="url(#myGradient050)" stroke="black" /&gt;
+  &lt;rect x="25" y="1" width="8" height="8" fill="url(#myGradient100)" stroke="black" /&gt;
+&lt;/svg&gt;</pre>
+
+<p>{{EmbedLiveSample('radialGradient', 150, '100%')}}</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", "geometry.html#CY", "cy")}}</td>
+ <td>{{Spec2("SVG2")}}</td>
+ <td>ジオメトリプロパティとしての定義</td>
+ </tr>
+ <tr>
+ <td>{{SpecName("SVG2", "pservers.html#RadialGradientElementCYAttribute", "cy")}}</td>
+ <td>{{Spec2("SVG2")}}</td>
+ <td>SVG2ペイントサーバに対する定義</td>
+ </tr>
+ <tr>
+ <td>{{SpecName("SVG1.1", "pservers.html#RadialGradientElementCYAttribute", "cy")}}</td>
+ <td>{{Spec2("SVG1.1")}}</td>
+ <td><code>&lt;radialGradient&gt;</code>に対する初期定義</td>
+ </tr>
+ <tr>
+ <td>{{SpecName("SVG1.1", "shapes.html#EllipseElementCYAttribute", "cy")}}</td>
+ <td>{{Spec2("SVG1.1")}}</td>
+ <td><code>&lt;ellipse&gt;</code>に対する初期定義</td>
+ </tr>
+ <tr>
+ <td>{{SpecName("SVG1.1", "shapes.html#CircleElementCYAttribute", "cy")}}</td>
+ <td>{{Spec2("SVG1.1")}}</td>
+ <td><code>&lt;circle&gt;</code>に対する初期定義</td>
+ </tr>
+ </tbody>
+</table>