PHP前端开发

SVG制作简单图形的实例介绍

百变鹏仔 2个月前 (10-18) #H5教程
文章标签 实例

圆形 circle

<svg>    <circle></circle></svg>

矩形 rect

<svg>    <rect>    </rect></svg>

椭圆 ellipse

<svg>    <ellipse>    </ellipse></svg>

线 line

<svg>    <line>    </line></svg>

折线 polyline

<svg>    <line>    </line></svg>

多边形 polygon

<svg>    <polygon>    </polygon></svg>

路径 path

可用于路径数据的命令
M = movetoL = linetoH = horizontal linetoV = vertical linetoC = curvetoS = smooth curvetoQ = quadratic Belzier curveT = smooth quadratic Belzier curvetoA = elliptical ArcZ = closepath<svg>    <path></path></svg>