首页 > 其他 > 详细

canvas的学习笔记 6 linewidth

时间:2020-03-27 16:10:11      阅读:55      评论:0      收藏:0      [点我收藏+]

知识点:ineWidth线宽.默认为1,起始点和终点的连线为中心,上下各占线宽的一半

具体demo

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
<style>
canvas{
border:1px solid red;
}
</style>
</head>
<body>
<canvas id="radians" width="300" height="500"></canvas>
</body>
<script>
// lineWidth线宽.默认为1,起始点和终点的连线为中心,上下各占线宽的一半
function draw(){
var canvas =document.getElementById("radians")
if(!canvas.getContext) return;
var ctx=canvas.getContext("2d")
ctx.beginPath()
ctx.moveTo(10,50)
ctx.lineTo(100,50)
ctx.lineWidth=10;
ctx.stroke()


ctx.beginPath()
ctx.moveTo(50,100)
ctx.lineTo(100,100)
ctx.lineWidth=20;
ctx.stroke()
}
draw()
</script>
</html>

canvas的学习笔记 6 linewidth

原文:https://www.cnblogs.com/Progress-/p/12581258.html

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