Canvas
- HTML
<canvas id="canvas"></canvas>
- javascript
var canvas=document.getElementById("canvas")
var context=canvas.getContext("2d")
//使用context进行绘制
- canvas属性和方法
- canvas.width
- canvas.height
- canvas.getContext("2d")
绘制(基于状态)
- 线条
- moveTo(x,y)
- lineTo(x,y)
- beginPath() //重新开始一段路径的绘制
- closePath() //封闭路径
- 状态设置
- lineWidth 线条宽度
- strokeStyle 线条样式
- fillStyle 封闭图形样式
- 绘制方法
- stroke() //绘制边框
- fill() 填充
- 矩形
- rect(x,y,width,height)
- fillRect(x,y,width,height)
- strokeRect(x,y,width,height)