Questions tagged «coordinate-transformation»

6
如何在SVG中设置变换原点
我需要使用JavaScript调整SVG文档中的某些元素的大小并旋转它们。问题是,默认情况下,它始终围绕(0, 0)左上角的原点应用变换。 如何重新定义此变换锚点? 我尝试使用该transform-origin属性,但它不会影响任何内容。 这是我的方法: svg.getDocumentById('someId').setAttribute('transform-origin', '75 240'); 尽管我可以在Firefox中看到正确设置了属性,但似乎没有将枢轴点设置为我指定的点。我尝试之类的东西center bottom,并50% 100%有和没有括号。到目前为止没有任何工作。 有人可以帮忙吗?
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.