可以将文本添加到 SVG 路径吗?
是否可以将文本添加到 svg 路径,我创建了一个 svg 三角形,想在其中心添加一个字母,但不确定这是否可能?
Is it possible to add text to an svg path, I have created a svg triangle and would like to add a letter to the center of this but not sure if this is possible?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的。请参阅 SVG1.1 规范第 10.13 节(标题为“文本在路径”)了解有关使用
textPath
元素。总结:
id
属性。以下是直接来自规范的示例:
Yes. See section 10.13 of the SVG1.1 specification (titled "Text on a path") for information on using the
textPath
element.Summarized:
id
attribute.<textPath xlink:href="#pathid">My text here</textPath>
Here's an example straight from the spec: