运行 ❯
获取您的
自己的
网站
×
更改方向
保存代码
更改主题,深色/浅色
前往 Spaces
<!DOCTYPE html> <html> <body> <h2>SVG animateMotion Element</h2> <svg width="100%" height="150" xmlns="http://www.w3.org/2000/svg"> <rect x="45" y="18" width="155" height="45" style="stroke:green;fill:none;"> <animateMotion path="M0,0 q60,100 100,0 q60,-20 100,0" begin="0s" dur="10s" repeatCount="indefinite" /> </rect> <text x="50" y="50" style="font-family:Verdana;font-size:32">It's SVG! <animateMotion path="M0,0 q60,100 100,0 q60,-20 100,0" begin="0s" dur="10s" repeatCount="indefinite" /> </text> Sorry, your browser does not support inline SVG. </svg> </body> </html>