实例代码“Ctrl+/”提示“F11/ESC”全屏 返回 格式化 恢复 运行
x
 
1
<!DOCTYPE html>
2
<html>
3
<body>
4
5
<svg xmlns="https://www.w3.org/2000/svg" version="1.1" xmlns:xlink="https://www.w3.org/1999/xlink">
6
  <defs>
7
    <path id="path1" d="M75,20 a1,1 0 0,0 100,0" />
8
  </defs>
9
  <text x="10" y="100" style="fill:red;">
10
    <textPath xlink:href="#path1">I love SVG I love SVG</textPath>
11
  </text>
12
</svg>
13
 
14
</body>
15
</html>