作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我尝试了一个简单的测试来了解 svg + JS 的行为,因为我需要检查某个 SVG 对象是否在 svg 路径上并采取相应的操作。当尝试显式访问 SVG 元素(在本例中为椭圆)的 .cx 或 .cy 属性时,我得到的是 SVGAnimatedLength 对象,而不是获取坐标。
<svg
id="contenedorCirculo"
width="200mm"
height="200mm"
viewBox="0 0 200 200"
version="1.1"
>
<g
inkscape:groupmode="layer"
id="layer3"
inkscape:label="points">
<ellipse
style="fill:#ff00e5;fill-opacity:1;stroke:#fbde00;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="circulo"
cx="50"
cy="50"
rx="5"
ry="5" />
</g>
</svg>
<script>
//this returns SVGAnimatedLength { baseVal: SVGLength, animVal: SVGLength }
console.log(document.getElementById("circulo").cx);
</script>
最佳答案
您可能正在寻找值(value)。因为SMIL有一个animated value and a base value对于许多 SVG 属性。除非您实际使用 SMIL animVal
和 baseVal
会是一样的
如果你想设置这个值,你应该设置baseVal
; animVal
只能通过 SMIL 设置。
<svg
id="contenedorCirculo"
width="200mm"
height="200mm"
viewBox="0 0 200 200"
version="1.1"
>
<g
inkscape:groupmode="layer"
id="layer3"
inkscape:label="points">
<ellipse
style="fill:#ff00e5;fill-opacity:1;stroke:#fbde00;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="circulo"
cx="50"
cy="50"
rx="5"
ry="5" />
</g>
</svg>
<script>
//this returns SVGAnimatedLength { baseVal: SVGLength, animVal: SVGLength }
console.log(document.getElementById("circulo").cx.animVal.value);
</script>
关于javascript - 获取 svg 元素的坐标返回 SVGAnimatedLength,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61341892/
我尝试了一个简单的测试来了解 svg + JS 的行为,因为我需要检查某个 SVG 对象是否在 svg 路径上并采取相应的操作。当尝试显式访问 SVG 元素(在本例中为椭圆)的 .cx 或 .cy 属
我是一名优秀的程序员,十分优秀!