SVG:我怎样才能在coords中抓住路径

时间:2013-07-18 11:39:03

标签: javascript svg raphael

我生成了各种路径并添加到SVG组。

现在我有一些(x,y,宽度和高度)组合可用。有了这个,我想选择属于它的所有路径并将它们分组。

知道如何识别路径吗?

谢谢! -SRI

1 个答案:

答案 0 :(得分:0)

为了获得svg元素的几何边界框,可以调用getBBox DOM方法。

在拉斐尔,你可以使用

Element.getBBox();

返回具有以下属性的对象。

x:      number       top left corner x
y:      number       top left corner y
x2:     number       bottom right corner x
y2:     number       bottom right corner y
width:  number       width
height: number       height 

参考:http://raphaeljs.com/reference.html#Element.getBBox