xxxxxxxxxx
44
let img;
function preload() {
img = loadImage('mur.jpg');
}
let unmot;
function setup() {
createCanvas(1300, 867);
noCursor();
rectMode(CENTER);
ellipseMode(CENTER);
background(255);
image(img, 0, 0);
unmot = select('#hello');
// Make a <p> element and put it behind the canvas
/*
let p = createP('"Les horloges sonnaient treize heures."');
p.center();
p.style("font-size", "50px");
p.style("text-align", "center");
p.style("z-index", "-9999");
*/
// Make a <p> element and put it behind the canvas
}
function draw() {
erase();
rect(mouseX, mouseY, 50, 50);
noErase();
}