你如何使用raphaeljs获得svg的尺寸

时间:2013-11-18 11:18:06

标签: svg raphael

我有:

<div id = 'my_div' style='width:200px;height:200px;'></div>
<script>
  var my_paper = Raphael( "my_div" ) ;

  // then I jquery.ajax(...) to retrieve a remote .svg file ... 
  //     the svg is delivered as an xml-formatted object

  var my_set = my_paper.importSVG( the_xml_object );
</script>

3 的东西我想获得宽度:

1 - 论文.............. EASY ...使用:my_paper.width

2 - 设置.................. EASY ...使用:my_set.getBBox()。width

3 - svg元素....如何使用raphael做到这一点?

我发现我可以直接访问the_xml_object,并从svg元素中获取信息,但我想使用raphael库来实现。

0 个答案:

没有答案