首页 > 其他 > 详细

绘制线条

时间:2021-02-25 15:21:21      阅读:40      评论:0      收藏:0      [点我收藏+]

绘制线条

// Get the context
context = document.getElementById("cvs").getContext(‘2d‘);

// Anti aliasing fix. This makes the lines look crisp and sharp and means that rounding to the
// nearest half pixel is not needed. If you don‘t mind slightly thicker lines you can do without this
context.translate(0.5, 0.5);

// Draw the circle
context.beginPath();
context.setLineDash([5]);
context.arc(65, 65, 50, 0, 2 * Math.PI, false);
context.stroke();

// Draw the square
context.beginPath();
context.setLineDash([5, 2]);
context.rect(130, 15, 100, 100);
context.stroke();

// Draw the triangle
context.beginPath();
context.setLineDash([1, 2]);
context.moveTo(245, 115);
context.lineTo(295, 15);
context.lineTo(345, 115);
context.closePath();
context.stroke();

// Draw the irregular shape
context.beginPath();
context.fillStyle = ‘#eee‘;
context.setLineDash([15]);
context.moveTo(360, 115);
context.lineTo(375, 95);
context.lineTo(405, 15);
context.lineTo(445, 65);
context.lineTo(445, 115);
context.closePath();
context.fill();
context.stroke();

 

技术分享图片

 

绘制线条

原文:https://www.cnblogs.com/zhishiyv/p/14446161.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!