1.路径绘图:
- 把“钢笔”移动到画布的某个位置上
- ctx.moveTo(x,y)
- 把“钢笔”连线到画布的某个位置上
- ctx.lineTo(x,y)
- 描边路径的api
- ctx.stroke()
- 填充路径的api
- ctx.fill()
- 描边路径的样式
- ctx.strokeStyle = 'red' 描边的颜色
- ctx.lineWidth = 5 线宽
- 填充的样式
- ctx.fillStyle = 'blue' 填充的颜色
- 路径的闭合
- ctx.closePath 把起点和终点链接到一起
- 另起一个新的路径
- ctx.beginPath