码迷,mamicode.com
首页 > 其他好文 > 详细

Canvas--矩形

时间:2017-11-02 13:09:46      阅读:116      评论:0      收藏:0      [点我收藏+]

标签:images   rect   context   --   new   src   style   span   绘制   

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--矩形

标签:images   rect   context   --   new   src   style   span   绘制   

原文地址:http://www.cnblogs.com/yin-1841/p/7771563.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!