Canvas--矩形
Posted 穿山甲到底说了什么
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Canvas--矩形相关的知识,希望对你有一定的参考价值。
Canvas提供了一个直接绘制矩形的方法:rect(x,y,width,height)
1 context.rect(50,50,100,100) 2 3 context.lineWidth = 10 4 context.strokeStyle = \'#0091db\' 5 context.fillStyle = \'#00ff00\' 6 7 context.stroke() 8 context.fill()
绘制矩形的其它方法:fillRect(x,y,width,height)、strokeRect(x,y,width,height)
1 context.lineWidth = 10 2 context.strokeStyle = \'#0091db\' 3 4 context.strokeRect(50,50,100,100)
1 context.lineWidth = 10 2 context.fillStyle = \'#00ff00\' 3 4 context.fillRect(50,50,100,100)
以上是关于Canvas--矩形的主要内容,如果未能解决你的问题,请参考以下文章