cy - SVG 编辑
cy
属性定义一个中心点的 y 轴坐标。
有三个元素在使用此属性:<circle>
,<ellipse>
和 <radialGradient>
html,body,svg { height:100% }
<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>
,cy
用来定义图形中心的 y 轴坐标。
值 | <length> | <percentage> |
---|---|
默认值 | 0 |
可变性 | Yes |
注:起始于 SVG2,cy
是一个几何属性,意味着该属性也可以用作圆的 CSS 属性。
椭圆
对于 <ellipse>
,cy
用来定义图形中心的 y 轴坐标。
值 | <length> | <percentage> |
---|---|
默认值 | 0 |
可变性 | Yes |
注:起始于 SVG2,cy
是一个几何属性,意味着该属性也可以用作椭圆的 CSS 属性。
径向渐变
对于 <radialGradient>
,cy
用来定义径向渐变终止圆的 y 轴坐标。
值 | <length> |
---|---|
默认值 | 50% |
可变性 | Yes |
示例
html,body,svg { height:100% }
<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>
技术规范
技术规范 | 状态 | 注释 |
---|---|---|
Scalable Vector Graphics (SVG) 2 cy | Candidate Recommendation | Definition as a geometry property |
Scalable Vector Graphics (SVG) 2 cy | Candidate Recommendation | Definition for SVG2 paint servers. |
Scalable Vector Graphics (SVG) 1.1 (Second Edition) cy | Recommendation | Initial definition for <radialGradient> |
Scalable Vector Graphics (SVG) 1.1 (Second Edition) cy | Recommendation | Initial definition for <ellipse> |
Scalable Vector Graphics (SVG) 1.1 (Second Edition) cy | Recommendation | Initial definition for <circle> |
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论