首页 > 其他 > 详细

Canvas--矩形

时间:2017-11-02 12:52:05      阅读:163      评论:0      收藏:0      [点我收藏+]

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

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

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!