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

canvas 虚线横线 实线横线

时间:2018-09-18 19:07:11      阅读:319      评论:0      收藏:0      [点我收藏+]

标签:bsp   nbsp   ash   定义   虚线   das   new   str   路径   

ctx.setLineDash([3, 3]);
ctx.moveTo(0 * pixelRatio, 875 * pixelRatio);
//定义直线的终点坐标为(50,10)
ctx.lineTo(750 * pixelRatio, 875 * pixelRatio);
//沿着坐标点顺序的路径绘制直线
ctx.lineWidth = 1 * pixelRatio;
ctx.strokeStyle = "#DDDDDD";
ctx.stroke();
 

//定义直线的起点坐标为(10,10)
ctx.moveTo(0 * pixelRatio, 1008 * pixelRatio);
//定义直线的终点坐标为(50,10)
ctx.lineTo(750 * pixelRatio, 1008 * pixelRatio);
//沿着坐标点顺序的路径绘制直线
ctx.lineWidth = 1 * pixelRatio;
ctx.strokeStyle = "#DDDDDD";
ctx.stroke();

canvas 虚线横线 实线横线

标签:bsp   nbsp   ash   定义   虚线   das   new   str   路径   

原文地址:https://www.cnblogs.com/ylblogs/p/9670360.html

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