SVGLinearGradientElement: y1 属性
SVGLinearGradientElement
接口的只读属性 y1
描述了渐变的起始点的 y 轴坐标,其类型为 SVGAnimatedLength
。它反映了 <linearGradient>
元素上 y1
属性的计算值。
该属性值是一个 <length>
、<percentage>
或 <number>
。SVGAnimatedLength.baseVal
的数值是渐变起点在用户坐标系中的 y 坐标。
值
一个 SVGAnimatedLength
对象。
示例
给定以下 SVG
html
<svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="gradient1" x1="50%" y1="0%" x2="50%" y2="100%">
<stop offset="0%" stop-color="blue" />
<stop offset="100%" stop-color="white" />
</linearGradient>
<linearGradient id="gradient2" x1="25%" y1="0%" x2="75%" y2="100%">
<stop offset="0%" stop-color="red" />
<stop offset="100%" stop-color="yellow" />
</linearGradient>
</defs>
<rect x="0" y="0" width="200" height="100" fill="url(#gradient1)" />
<rect x="0" y="100" width="200" height="100" fill="url(#gradient2)" />
</svg>
我们可以访问 y1
属性的计算值
js
const linearGradients = document.querySelectorAll("linearGradient");
const y1Gradient1 = linearGradients[0].y1;
const y1Gradient2 = linearGradients[1].y1;
console.dir(y1Gradient1.baseVal.value); // output: 0 (0% of 200)
console.dir(y1Gradient2.baseVal.value); // output: 0 (0% of 200)
规范
规范 |
---|
Scalable Vector Graphics (SVG) 2 # __svg__SVGLinearGradientElement__y1 |
浏览器兼容性
加载中…