我有一个简单的SVG树,我希望rect2的x属性在rect1的宽度上依赖(引用):
<rect id="rect1" style="fill:black" x="35" y="0" width="30" height="40" />
<rect id="rect2" style="fill:black" x="**rect1.width**" y="40" width="26" height="10" />
在SVG中是这样的,我在yahoogle或SVG参考中找不到它。
另一种方法是变量
**var widthOfRect1 = 30**
<rect id="rect1" style="fill:black" x="35" y="0" width="widthOfRect1" height="40" />
<rect id="rect2" style="fill:black" x="widthOfRect1" y="40" width="26" height="10" />
有办法吗?我知道你可以传递参数,但这并不是我想要的。
想法?
答案 0 :(得分:1)