mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-23 12:51:06 +00:00
16 lines
284 B
HTML
16 lines
284 B
HTML
|
<canvas id=c></canvas>
|
||
|
<script>
|
||
|
const canvas = document.getElementById("c");
|
||
|
const ctx = canvas.getContext("2d");
|
||
|
|
||
|
canvas.width = 600;
|
||
|
canvas.height = 300;
|
||
|
|
||
|
|
||
|
ctx.strokeStyle = "rgba(0, 0, 0, 1)";
|
||
|
ctx.beginPath();
|
||
|
ctx.moveTo(88, 137.5);
|
||
|
ctx.lineTo(736, 137.5);
|
||
|
ctx.stroke();
|
||
|
</script>
|