我正在开发一个svg应用程序。我现在面临的问题是我必须在文本路径中添加一个圆圈而不是文本字符串,如何实现它,任何帮助都会很棒,提前感谢
答案 0 :(得分:1)
下面, http://tutorials.jenkov.com/svg/textpath-element.html
你会发现:
<defs>
<path id="myTextPath"
d="M75,20
a1,1 0 0,0 100,0
"
/>
</defs>
<text x="10" y="100" style="stroke: #000000;">
<textPath xlink:href="#myTextPath" >
Text along a curved path...
</textPath>
</text>
致Jakob Jenkov的信用!