把 SVG 直接嵌入 HTML 页面
在 HTML5 中,您能够将 SVG 元素直接嵌入 HTML 页面中。
SVG 圆形
实例
<svgxmlns="http://www.w3.org/2000/svg"version="1.1"> <circlecx="100"cy="50"r="40"stroke="black"stroke-width="2"fill="red"/>svg>
SVG 五角星
实例
<!DOCTYPEhtml><html><body><svgxmlns="http://www.w3.org/2000/svg"version="1.1"height="190"> <polygonpoints="100,10 40,180 190,60 10,60 160,180" style="fill:lime;stroke:purple;stroke-width:5;fill-rule:evenodd;">svg>body>html>