如何在textPath中附加一个圆圈obj

时间:2010-12-14 11:51:10

标签: svg

我正在开发一个svg应用程序。我现在面临的问题是我必须在文本路径中添加一个圆圈而不是文本字符串,如何实现它,任何帮助都会很棒,提前感谢

1 个答案:

答案 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的信用!