标签:
1 <svg xmlns="http://www.w3.org/2000/svg"> 2 <rect 3 x="10" 4 y="10" 5 rx="5" 6 ry="5" 7 width="200" 8 height="200" 9 stroke="red" 10 fill="none"/> 11 12 <circle 13 cx="320" 14 cy="110" 15 r="100" 16 stroke="red" 17 fill="none"/> 18 19 <ellipse 20 cx="530" 21 cy="110" 22 rx="100" 23 ry="80" 24 stroke="red" 25 fill="none"/> 26 27 <line 28 x1="10" 29 y1="220" 30 x2="200" 31 y2="420" 32 stroke="red"/> 33 34 <polyline 35 points="220 220 420 320 220 420" 36 fill="none" 37 stroke="red"/> 38 39 <polygon 40 points="440 220 640 320 440 420" 41 fill="none" 42 stroke="red"/> 43 </svg>
标签:
原文地址:http://www.cnblogs.com/tyxloveyfq/p/4417345.html