本文介绍了如何在画布上绘制另一条下线。的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
</head>
<body contenteditable="false">
<canvas id="myCanvas" width="100" height="100" style="border:1px solid #d3d3d3;">
Your browser does not support the canvas element.
</canvas>
<script>
var canvas = document.getElementById("myCanvas");
var ctx = canvas.getContext("2d");
ctx.beginPath();
ctx.moveTo(0,100);
ctx.lineTo(20,80);
ctx.lineTo(10,80);
</script>
</body>
</html>
我尝试了什么:
尝试了几个积分但无法划线。
What I have tried:
tried several points but unable to draw down line.
推荐答案
ctx.lineTo(10, 80);
ctx.stroke();
这篇关于如何在画布上绘制另一条下线。的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!