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

canvas之画一条线段

时间:2014-08-15 14:26:09      阅读:228      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   os   ar   2014   div   

bubuko.com,布布扣

 

 1  var canvas=document.getElementById("canvas");
 2     //设置绘图环境
 3     var cxt=canvas.getContext(‘2d‘);
 4     //开启新路近
 5     cxt.beginPath();
 6     // 设置笔触的宽度
 7     cxt.lineWidth=10;
 8     //设置笔触的颜色
 9     cxt.strokeStyle="#00ff00";
10     //设定笔触的位置
11     cxt.moveTo(20,20);
12     //设置移动的位置
13     cxt.lineTo(100,20);
14     //画线
15     cxt.stroke();//这个时候的线已经出来了
16     //关闭路径
17     cxt.closePath();
18     //凡事路径图形必须先开始路径,画完之后必须结束路径

 

canvas之画一条线段,布布扣,bubuko.com

canvas之画一条线段

标签:style   blog   http   color   os   ar   2014   div   

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

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