Heim > Artikel > Web-Frontend > SVG图形编码_html/css_WEB-ITnose
<svg> <rect fill="red" height="100" id="rect" stroke="gray" stroke-width="10" width="100" x="20" y="20"></rect></svg>
<svg> <circle id="circle"cx="100" cy="80" r="50" stroke="gray" stroke-width="10" fill="red"> </svg>
circle:没有x,y的属性因为已经设置好了圆心cx,cy
<svg class="grid-50"> <rect fill="red" height="100" id="rect" stroke="gray" stroke-width="10" width="100" x="20" y="20"></rect></svg>
ellipse:椭圆其实就是矩形然后边框是圆角
<svg > <ellipse rx=100 ry=30 cx=150 cy=60 fill="yellow" stroke="gray" /> </svg>
<svg> <line x1="0" y1="0" x2="200" y2="20" fill="gray" stroke="gray" stroke-width="2" /></svg>
注意不能使用(0,0)是无效的
<svg> <polyline points="0,0 0,20 20,20 20,40 40,40" fill="white" stroke="gray" stroke-width="2" /></svg>
当然更复杂的图形,只要知道各个点的坐标即可
<svg > <polygon points="50,50 0,100 100,100 50,50" fill="blue" stroke="gray" stroke-width="1"> </svg>
下面的命令可用于路径数据:
注释:以上所有命令均允许小写字母。大写表示绝对定位,小写表示相对定位。
必须按照规则书写
<svg> <path d="M50 50 L200 50 L200 0 L50 0 Z" fill="blue" stroke="gray" stroke-width="2" /> </svg>
demo: http://2.liteng.sinaapp.com/svg/index.html
原文地址url: http://liteng.org/node/51