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

canvas之画矩形

时间:2014-08-15 14:28:39      阅读:131      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   os   ar   2014   div   

bubuko.com,布布扣

1 <canvas id="canvas" width="600" height="500" style="background-color: yellow"></canvas>

 

 1  var canvas=document.getElementById("canvas");
 2     var cxt=canvas.getContext("2d");
 3     cxt.beginPath();
 4     cxt.rect(100,20,100,100);
 5     cxt.stroke();//空心矩形
 6     cxt.closePath();
 7     //其他画法
 8     cxt.beginPath();
 9     cxt.strokeRect(100,150,100,100);//这个方法相当于rect()和stroke()组合
10     cxt.closePath();
11 
12     //实心矩形
13     cxt.beginPath();
14     cxt.rect(100,270,100,100);
15     cxt.fill();
16     cxt.closePath();
17     //其他方法
18     cxt.beginPath();
19     cxt.fillStyle="red";//填充颜色
20     cxt.fillRect(100,390,100,100);//实心矩形
21     cxt.closePath();

 

canvas之画矩形,布布扣,bubuko.com

canvas之画矩形

标签:style   blog   http   color   os   ar   2014   div   

原文地址:http://www.cnblogs.com/guoyansi19900907/p/3914728.html

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