Settings:
Background color
Min width: 10px, max width: 3932160px, default width: 3840px
Width:

JavaScript canvas





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);
}