作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我已经阅读了一些 svg 规范。我阅读了有关 tref
元素 https://www.w3.org/TR/SVG/single-page.html#text-TRefElement 的信息.你们中的大多数人可能都知道 tref
将被弃用。这让我想知道现在如何做同样的事情。它不应该太难,但我真的找不到关于这个话题的任何东西。我也很好奇 depricating tref
背后的原因。但这只是一个“有趣的事实”。简而言之:
图形
<svg>
<defs>
<text id="ReferencedText">
Referenced character data
</text>
</defs>
<text x="100" y="200" font-size="45" fill="red" >
<tref href="#ReferencedText"/>
</text>
</svg>
最佳答案
我遇到了同样的情况,经过进一步阅读,我测试了以下内容,它像 tref 曾经工作的那样工作:
<svg>
<defs>
<text id="Text1">The text to be shown</text>
</defs>
<use xlink:href="#Text1" x="560" y="850" style="font-family: Arial;fill:#000000; font-size:28px;">
</svg>
关于svg - depricated tref 的替代方案是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45607213/
我已经阅读了一些 svg 规范。我阅读了有关 tref 元素 https://www.w3.org/TR/SVG/single-page.html#text-TRefElement 的信息.你们中的大
我已经阅读了一些 svg 规范。我阅读了有关 tref 元素 https://www.w3.org/TR/SVG/single-page.html#text-TRefElement 的信息.你们中的大
我是一名优秀的程序员,十分优秀!