📅  最后修改于: 2023-12-03 14:47:46.841000             🧑  作者: Mango
SVG(Scalable Vector Graphics)
<text>
<textPath xlink:href="#path_id">
Text to be displayed along the path
</textPath>
</text>
xlink:href
: 指定路径的ID。<svg>
<path id="curve" d="M10 80 C 40 10, 65 10, 95 80 S 150 150, 180 80" stroke="black" fill="transparent"/>
<text>
<textPath xlink:href="#curve">This text will be placed on path</textPath>
</text>
</svg>
SVG
href
: 指定路径的URL。startOffset
: 指定路径的起始位置的偏移量,范围是0到100。SVG