SVG文本路径问题

时间:2015-11-19 10:02:08

标签: text svg

我正在研究SVG元素,并且我在路径上添加了一个文本路径。就像在这个链接上一样。

https://developer.mozilla.org/en/docs/Web/SVG/Element/textPath

但我需要将文字添加到两行中,就像用' br'

一样。

enter image description here

有人知道怎么做, 最好的问候,

1 个答案:

答案 0 :(得分:1)

在em单位中使用dy:

<svg width="100%" height="100%" viewBox="0 0 1000 300"
     xmlns="http://www.w3.org/2000/svg" 
     xmlns:xlink="http://www.w3.org/1999/xlink">
  <defs>
    <path id="MyPath"
          d="M 100 200 
             C 200 100 300   0 400 100
             C 500 200 600 300 700 200
             C 800 100 900 100 900 100" />    
  </defs>

  <use xlink:href="#MyPath" fill="none" stroke="red"  />

  <text font-family="Verdana" font-size="42.5" dy="-1em">

<textPath xlink:href="#MyPath">
      We go up, then we go down, then up again
    </textPath>

  </text>
<text dy="0em" font-family="Verdana" font-size="42.5">

<textPath xlink:href="#MyPath">
      SecondLine
    </textPath>

  </text>

  <!-- Show outline of the viewport using 'rect' element -->
  <rect x="1" y="1" width="998" height="298"
        fill="none" stroke="black" stroke-width="2" />
</svg>