SVG是一种图像文件格式,Scalable Vector Graphics,意思是可缩放的矢量图形。
<html>
<body>
<h1>My first SVG</h1>
<svg xmlns="http://www.w3.org/2000/svg" version="1.1">
<circle cx="100" cy="50" r="40" stroke="black" stroke-width="2" fill="red" />
</svg>
</body>
</html>
画了一个红色的圆
看看网上的实例教程https://www.runoob.com/svg/svg-examples.html
网上好多酷炫动画