gpt4 book ai didi

javascript - 如何获取分组 svg 元素的全局坐标?

转载 作者:数据小太阳 更新时间:2023-10-29 04:31:11 26 4
gpt4 key购买 nike

假设我有以下 document (fiddle) :

<svg>
<g transform="translate(50,50)">
<rect width="20" height="20" style="fill:black;">
</g>
</svg>

如果我不知道 rect 元素在一个组中,我如何获取它的全局坐标?

最佳答案

其实有点难找。搜索 SVGElement 的方法会导致页面显示 SVGElement 没有方法!它实际上有很多方法,但它们是继承的:

http://www.w3.org/TR/SVG/types.html#InterfaceSVGLocatable

根据您的需要,您可以使用 getCTMgetScreenCTM 的结果来转换 SVGPoint,从而了解您的元素在哪里:

root = document.getElementById('root')
rec = document.getElementById('rec')
point = root.createSVGPoint()
# This is the top-left relative to the SVG element
ctm = rec.getCTM()
console.log point.matrixTransform(ctm)
# This is the top-left relative to the document
ctm = rec.getScreenCTM()
console.log point.matrixTransform(ctm)

http://jsfiddle.net/kitsu_eb/ZXVAX/3/

关于javascript - 如何获取分组 svg 元素的全局坐标?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17817790/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com