是否有命令将整个 SVG 路径移动到新位置?

发布于 2024-12-07 14:09:39 字数 45 浏览 0 评论 0原文

是否有命令将整个 SVG 路径移动到新位置,而不是向路径的每个点添加偏移量?

Is there a command to move the whole SVG path to a new position, instead of adding the offsets to each point of the path?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

红焚 2024-12-14 14:09:39

感谢sehe的评论。解决办法是:将路径包裹成

<g transform="translate(offset_x,offset_y)"></g>

Thanks to sehe's comment. The solution is: wrap the path into

<g transform="translate(offset_x,offset_y)"></g>
黑色毁心梦 2024-12-14 14:09:39
<path transform="translate(x, y)" d="....">

如果你的道路已经有了转变,而你不想干扰它们:

<g transform="translate(x, y)">
    <path transform="..." d="....">
</g>

窃取 Phrogz 的评论和 Powerboy 的答案。

<path transform="translate(x, y)" d="....">

If your path already has transforms and you'd rather not interfere with them:

<g transform="translate(x, y)">
    <path transform="..." d="....">
</g>

Stealing from Phrogz's comment and Powerboy's answer.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文