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

Canvas 学习2 (矩形)

时间:2020-10-14 20:30:59      阅读:24      评论:0      收藏:0      [点我收藏+]

标签:技术   ntb   getc   ext   strong   type   class   第一个   col   

1.Canvas画矩形

 1      /** @type {HTMLCanvasElement} */
 2       var canvas = document.getElementById("tutorial");
 3       var ctx = canvas.getContext("2d"); //获得画笔
 4       /*
 5         1.描边矩形:strokeRect
 6         2.填充矩形:fillRect
 7         绘制矩形需要一个起始点
 8         四个参数:sx,sy,width,height
 9         sx:开始点的X坐标
10         sy:开始点的Y坐标
11         width:宽度
12         height:高度
13       */
14       //第一个描边矩形:
15       ctx.strokeRect(0, 0, 100, 100);
16       //第一个填充矩形
17       ctx.fillRect(100, 100, 100, 100);
18       ctx.strokeRect(200, 200, 100, 100);
19       ctx.fillRect(300, 300, 100, 100);
20       ctx.strokeRect(400, 400, 100, 100);
21       ctx.strokeRect(400, 200, 100, 100);
22       ctx.fillRect(500, 100, 100, 100);

效果图:

技术图片

 

 

 

Canvas 学习2 (矩形)

标签:技术   ntb   getc   ext   strong   type   class   第一个   col   

原文地址:https://www.cnblogs.com/qjh0208/p/13813791.html

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