SVG-标签
标签 直线 <line> <line> 标签用来创建线条。 属性 含义 x1 属性在 x 轴定义线条的开始 y1 属性在 y 轴定义线条的开始 x2 属性在 x 轴定义线条的结束 y2 属性在 y 轴定义线条的结束 折线 <polyline> <polyline> 标签用来创建仅包含直线的形状。 属性 含义 points 指定了每个端点的坐标,横坐标与纵坐标之间与逗号分隔,点与点之间用空格分隔 <svg width="100" height="50"> <polyline stroke="red" fill="black" stroke-width="2" points="0,0 10,10 20,10 100,50"/> </svg> See the Pen svg-example-4 by flqbestboy ( @fanlinqiang ) on CodePen . 圆 <circle> 属性 含义 cx 圆心 x 轴坐标 cy 圆心 y 轴坐标 r 半径 <svg width="100" height="50"> <circle cx="50" cy="25" r="25" /> </svg> See the Pen svg-example-5 by flqbestboy ( @fanlinqiang ) on CodePen . 矩形 <rect> 标签可用来创建矩形