最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Find center of svg shape - Stack Overflow

programmeradmin0浏览0评论

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.

Share Improve this question edited Oct 26, 2016 at 20:04 Fuzzyma 8,5366 gold badges31 silver badges68 bronze badges asked Oct 26, 2016 at 17:12 PedroPedro 1,4877 gold badges23 silver badges41 bronze badges
Add a ment  | 

1 Answer 1

Reset to default 9

You 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

发布评论

评论列表(0)

  1. 暂无评论