Toggle Menu
Settings:
Background color
Change bg color
Min width: 10px, max width: 3932160px, default width: 3840px
Width:
JavaScript canvas
Canvas Width:
Canvas Height:
Change Canvas Size
Execute
Samples
Note:
the canvas id is "myCanvas"
default js code for canvas is:
const canvas = document.getElementById("myCanvas");
const ctx = canvas.getContext("2d");
function generateCanvas() {
ctx.clearRect(0, 0, canvas.width, canvas.height);
}