将 SVG 图像分割成碎片
Say you have a SVG image such as this:
Each card is its own svg group, but contains other groups of subelements.
How can you split it up into 52 different images?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
假设每张卡都位于其自己的组中(
元素),并且组之外没有依赖项,则:)
Assuming each card is in it's own group (
<g>
element) with no dependencies outside the group then:<svg ...></svg>
)