--- title: cx slug: Web/SVG/Attribute/cx translation_of: Web/SVG/Attribute/cx ---
cx属性は中心のx-座標を定義します。
3つの要素がこの属性を用います: {{SVGElement("circle")}}, {{SVGElement("ellipse")}}, {{SVGElement("radialGradient")}}
html,body,svg { height:100% }
<svg viewBox="0 0 300 100" xmlns="http://www.w3.org/2000/svg">
<radialGradient cx="25%" id="myGradient">
<stop offset="0" stop-color="white" />
<stop offset="100%" stop-color="black" />
</radialGradient>
<circle cx="50" cy="50" r="45"/>
<ellipse cx="150" cy="50" rx="45" ry="25" />
<rect x="205" y="5" width="90" height="90" fill="url(#myGradient)" />
</svg>
{{EmbedLiveSample('topExample', 100, 100)}}
{{SVGElement('circle')}}に対して、cxは、図形のx-軸の中心を定義します。
| 値 | {{cssxref("length-percentage")}} |
|---|---|
| 既定値 | 0 |
| アニメーション可否 | はい |
注:SVG2として開始する場合には、cxはジオメトリプロパティです。これは本属性が円へのCSSプロパティとしても利用可能であることを意味します。
{{SVGElement('ellipse')}}に対して、cxは、図形のx-軸の中心を定義します。
| 値 | {{cssxref("length-percentage")}} |
|---|---|
| Default value | 0 |
| Animatable | はい |
注:SVG2として開始する場合には、cxはジオメトリプロパティです。これは本属性が楕円へのCSSプロパティとしても利用可能であることを意味します。
{{SVGElement('radialGradient')}}に対して、cxは、放射状勾配の終端円のx-軸の中心を定義します。
| 値 | {{cssxref("length")}} |
|---|---|
| 既定値 | 50% |
| アニメーション可否 | はい |
html,body,svg { height:100% }
<svg viewBox="0 0 34 10" xmlns="http://www.w3.org/2000/svg">
<defs>
<radialGradient cx="0" id="myGradient000">
<stop offset="0%" stop-color="gold" />
<stop offset="50%" stop-color="green" />
<stop offset="100%" stop-color="white" />
</radialGradient>
<radialGradient cx="50%" id="myGradient050">
<stop offset="0%" stop-color="gold" />
<stop offset="50%" stop-color="green" />
<stop offset="100%" stop-color="white" />
</radialGradient>
<radialGradient cx="100%" id="myGradient100">
<stop offset="0%" stop-color="gold" />
<stop offset="50%" stop-color="green" />
<stop offset="100%" stop-color="white" />
</radialGradient>
</defs>
<rect x="1" y="1" width="8" height="8" fill="url(#myGradient000)" stroke="black" />
<rect x="13" y="1" width="8" height="8" fill="url(#myGradient050)" stroke="black" />
<rect x="25" y="1" width="8" height="8" fill="url(#myGradient100)" stroke="black" />
</svg>
{{EmbedLiveSample('radialGradient', 150, '100%')}}
| 仕様書 | 策定状況 | コメント |
|---|---|---|
| {{SpecName("SVG2", "geometry.html#CX", "cx")}} | {{Spec2("SVG2")}} | Definition as a geometry property |
| {{SpecName("SVG2", "pservers.html#RadialGradientElementCXAttribute", "cx")}} | {{Spec2("SVG2")}} | SVG2ペイントサーバに対する定義 |
| {{SpecName("SVG1.1", "pservers.html#RadialGradientElementCXAttribute", "cx")}} | {{Spec2("SVG1.1")}} | <radialGradient>に対する初期定義 |
| {{SpecName("SVG1.1", "shapes.html#EllipseElementCXAttribute", "cx")}} | {{Spec2("SVG1.1")}} | <ellipse>に対する初期定義 |
| {{SpecName("SVG1.1", "shapes.html#CircleElementCXAttribute", "cx")}} | {{Spec2("SVG1.1")}} | <circle>に対する初期定義 |