码迷,mamicode.com
首页 > Web开发 > 详细

JS canvas画图

时间:2018-10-23 21:15:46      阅读:590      评论:0      收藏:0      [点我收藏+]

标签:width   bsp   close   方向   移动   style   new   path   擦除   

1. 获取canvas对象的画笔。

  document.getElementById(" ID名 ").getContext(‘ 2d ‘);

2. 设置画笔属性。

  .lineWidth = 5;   设置划线宽度为5像素。

  .strokeStyle = "rgb(250,255,20);    设置画线颜色。

  .fillStyle = "red"    设置填充颜色。

3. 画矩形

  .strokeRect(x, y, w, h);     画矩形框

  .fillRect(x, y, w, h);            画矩形面

4. 路径画图。

  .beginPath()                 开始路径定义

  .closePath()                 闭合路径(使首尾相连)

  .fill()                              填充

  .stroke()                       划线

 

  .moveTo(x, y)              移动画笔到(x,  y)

  lineTo(x, y)                  从当前位置划线至(x, y)

  arc(x, y, r, s, e, b)        画弧(xy坐标,r半径, s e开始与结束角度, b 划线方向 true为逆时针)

5. 清除画面内容。

  .clearRect(x,y,w,h)      擦除矩形中的内容

 

JS canvas画图

标签:width   bsp   close   方向   移动   style   new   path   擦除   

原文地址:https://www.cnblogs.com/yxtfs17/p/9838099.html

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