1. 程式人生 > >SVG圓形<circle> 標簽

SVG圓形<circle> 標簽

技術分享 public src blog bsp 資料 example fill graph

 1 <?xml version="1.0" standalone="no"?>
 2 <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" 
 3 "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
 4 
 5 <svg width="100%" height="100%" version="1.1"
 6 xmlns="http://www.w3.org/2000/svg">
 7 
 8 <circle cx="100" cy="50" r="40" stroke="black"
 9 stroke-width
="2" fill="red"/> 10 11 </svg>

 

技術分享

技術分享

以上資料原鏈接:http://www.w3school.com.cn/svg/svg_example.asp;

SVG圓形<circle> 標簽