SVGCircleElement: cy 属性
**cy
** 是 SVGCircleElement
接口的只读属性,它反映了 cy
属性的 <circle>
元素,并由此定义圆心 的 y 坐标。
如果未指定,效果等同于将值设置为 0
。
值
一个 SVGAnimatedLength
,表示圆心 的 y 坐标。
示例
SVG
html
<svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 100 100"
width="200"
height="200">
<circle cy="50" cy="50" r="50" fill="gold" id="circle" />
</svg>
JavaScript
js
const circle = document.getElementById("circle");
console.log(circle.cy);
规范
规范 |
---|
可缩放矢量图形 (SVG) 2 # __svg__SVGCircleElement__cy |
浏览器兼容性
BCD 表格仅在启用 JavaScript 的浏览器中加载。