blob: 75dcb4332e8fa48feac737445773035efe9ffad3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<canvas id=c></canvas>
<script>
const canvas = document.getElementById("c");
const ctx = canvas.getContext("2d");
canvas.width = 600;
canvas.height = 300;
ctx.translate(-5, 0);
ctx.strokeStyle = "rgba(0, 0, 0, 1)";
ctx.beginPath();
ctx.moveTo(93, 137.5);
ctx.lineTo(741, 137.5);
ctx.stroke();
</script>
|