cy

cy 属性は中心の y-座標を定義します。

3 つの要素がこの属性を用います: <circle>, <ellipse>, <radialGradient>

<svg viewBox="0 0 100 300" xmlns="http://www.w3.org/2000/svg">
  <radialGradient cy="25%" id="myGradient">
    <stop offset="0"    stop-color="white" />
    <stop offset="100%" stop-color="black" />
  </radialGradient>

  <circle  cy="50"  cx="50" r="45"/>
  <ellipse cy="150" cx="50" rx="45" ry="25" />
  <rect x="5" y="205" width="90" height="90" fill="url(#myGradient)" />
</svg>

circle

<circle>に対して、cyは、図形の y-軸の中心を定義します。

<length> | <percentage>
既定値 0
アニメーション可否 はい

メモ: SVG2 として開始する場合には、cyジオメトリプロパティです。これは本属性が円への CSS プロパティとしても利用可能であることを意味します。

ellipse

<ellipse>に対して、cyは図形中心の y-座標を定義します。

<length> | <percentage>
既定値 0
アニメーション可否 はい

メモ: SVG2 として開始する場合には、cyジオメトリプロパティです。これは本属性が円への CSS プロパティとしても利用可能であることを意味します。

radialGradient

<radialGradient>に対して、cyは、放射状勾配の終端円の y-座標を定義します。

<length>
既定値 50%
アニメーション可否 はい

<svg viewBox="0 0 34 10" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <radialGradient cy="0" id="myGradient000">
      <stop offset="0%"   stop-color="gold" />
      <stop offset="50%"  stop-color="green" />
      <stop offset="100%" stop-color="white" />
    </radialGradient>

    <radialGradient cy="50%" id="myGradient050">
      <stop offset="0%"   stop-color="gold" />
      <stop offset="50%"  stop-color="green" />
      <stop offset="100%" stop-color="white" />
    </radialGradient>

    <radialGradient cy="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>

仕様

Specification
Scalable Vector Graphics (SVG) 2
# CY
Scalable Vector Graphics (SVG) 2
# RadialGradientElementCYAttribute