如何动态调整 svg 中的文本大小?

发布于 2024-07-08 22:48:18 字数 112 浏览 7 评论 0原文

我正在编写一份包含嵌入式 svg 图表的报告。 该图是使用相对坐标绘制的,因此当浏览器窗口调整大小时,图的大小调整得很好。 唯一的例外是文本 - 它保持不变。 是否可以在 svg 中绘制可调整大小的文本?

I'm working on a report that includes an embedded svg diagram. The diagram is drawn using relative coordinates, so when a browser window resizes the diagram resizes pretty well. The only exception there is text - it remains the same. Is it possible to draw text in svg that is resizable?

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

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

发布评论

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

评论(1

玩心态 2024-07-15 22:48:18

我认为你必须使用相对大小的字体大小。 请参阅 http://www.w3.org/TR/SVG11/coords.html #UnitIdentifiers。 当您使用 pt 或 cm 等绝对尺寸时,系统会自动计算要在显示器上正确显示所需的尺寸,以获得该尺寸。 但是当您使用 px 时,将使用当前视口。 如果您不指定单位,则也将使用用户单位,如链接文档中的示例所示:

<text style="font-size: 50">Text size is 50 user units</text>

I think you have to use a relative size for the font-size. See http://www.w3.org/TR/SVG11/coords.html#UnitIdentifiers. When you use an absolute size like pt or cm, it is automatically calculated what the size must be to display correctly on your monitor, to get that size. But when you use px, the current viewport is used. If you don't specify a unit, the user units are also used as in the example on the linked document:

<text style="font-size: 50">Text size is 50 user units</text>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文