用于在 SVG 文档上导航的图像映射

发布于 2024-11-08 19:55:39 字数 363 浏览 0 评论 0原文

我有一个巨大的 SVG 文档,我希望能够使用随附的缩略图快速浏览该文档,就像具有可单击区域的图像地图一样。就像 Photoshop 的导航器调色板(谢谢 Phrogz) )

问题是我不知道如何在 SVG 文档上导航...

我正在考虑在我的 SVG 文档中使用命名的 标签,该标签将作为图像与图像之间的链接SVG。类似的事情。

你有什么想法吗?

I have a huge SVG document and I would like to be able to quickly navigate on this document using an accompanying thumbnail image, just like an image map with clickable areas . Like Photoshop's Navigator palette (thx Phrogz)

The problem is that I have no idea how to navigate on the SVG document...

I was thinking of using named <g> tags in my SVG document that would be the link between the image to the SVG. Something like that.

Do you have any idea?

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

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

发布评论

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

评论(1

ぃ双果 2024-11-15 19:55:39

有多种方法可以实现这一点。我会这样做:

  1. 将您的 SVG 内容放入文档中的 元素中。

  2. 在缩略图上绘制一个矩形(如果您的 SVG 文件有大量数据,则可能会对其进行栅格化,并且按比例缩小会导致性能不佳)。

  3. 使用 JavaScript 检测缩略图中的点击/拖动并将矩形移至其上方。

  4. 根据矩形相对于缩略图的放置比例,调整 SVG 内容上的 viewBox 属性。

实际上,如果是我,我会 将我的 SVG 嵌入 XHTML 并使用一个 SVG 文档内容和缩略图调色板的另一个 SVG 文档,或者甚至只是缩略图的 HTML 图像和带边框的 div。

There are a variety of ways to accomplish this. Here's what I would do:

  1. Place your SVG contents in an <svg> element within your document.

  2. Draw a rectangle over your thumbnail (which you might rasterize if your SVG file has a lot of data and drawing it scaled down causes poor performance).

  3. Use JavaScript to detect clicks/drags in the thumbnail and move the rectangle over it.

  4. Based on the ratio of the rectangle's placement with respect to the thumbnail, adjust the viewBox attribute on your SVG contents.

Actually, if it were me, I'd embed my SVG in XHTML and use one SVG document for the contents and either another SVG document for the thumbnail palette, or even just an HTML image and bordered div for the thumbnail.

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