xxxxxxxxxx
44
let input;
function setup() {
//background(255);
createCanvas (window.innerWidth,window.innerHeight);
textAlign(CENTER);
input = createInput();
input.position(20, 65);
//button = createButton('submit');
//button.position(input.x + input.width, 65);
}
function draw() {
textSize(90);
fill(0);
strokeWeight(5);
stroke(255);
//text('Tu vois ? ou pas ?', width/2,100+mouseY);
const name = input.value();
text(name, width/2, mouseY);
}