admin管理员组文章数量:1345011
Im using svgjs
to create my shapes. How can I find the center point of an svg shape and add an element there? In my case a red dot. I can't find any information in the documentation for a method or something that helps in this situation.
Im using svgjs
to create my shapes. How can I find the center point of an svg shape and add an element there? In my case a red dot. I can't find any information in the documentation for a method or something that helps in this situation.
1 Answer
Reset to default 9You can use the method getBBox
or alternatively getBoundingClientRect
. Both methods give you an object with the properties x, y, width, height
, which you can use to calculate your center.
Since you tagged your question with svg.js
I will also give you a solution with svg.js
.
// Vanilla
node = document.getElementById('myEl').getBBox()
// with svg.js
SVG.adopt(document.getElementById('myEl')).bbox()
The second solution gives you back an object which has cx
and cy
already calculated for you.
This method can be found in the docs
本文标签: javascriptFind center of svg shapeStack Overflow
版权声明:本文标题:javascript - Find center of svg shape - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743752314a2532875.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论