HTML 参考手册
HTML canvas moveTo() 方法
开始一条路径,移动到位置 0,0。创建到达位置 300,150 的一条线
源代码:
点击运行 »
<canvas id="myCanvas" width="300" height="150" style="border:1px solid #d3d3d3;"> 您的浏览器不支持 HTML5 canvas 标签。 </canvas> <script> var c = document.getElementById("myCanvas"); var ctx = c.getContext("2d"); ctx.beginPath(); ctx.moveTo(0, 0); ctx.lineTo(300, 150); ctx.stroke(); </script>
运行结果:
点击运行 »