运行 ❯
获取您
自己的
网站
×
更改方向
保存代码
更改主题,深色/浅色
前往 Spaces
<!DOCTYPE html> <html> <body> <h2>SVG textPath Element</h2> <svg height="200" width="350" xmlns="http://www.w3.org/2000/svg"> <path id="lineAC" d="M 30 180 q 150 -250 300 0" stroke="blue" stroke-width="2" fill="none"/> <text style="fill:red;font-size:25px;"> <textPath href="#lineAC" startOffset="80">I love SVG! I love SVG!</textPath> </text> Sorry, your browser does not support inline SVG. </svg> </body> </html>