xxxxxxxxxx
31
var words = ["hello", "ok", "salut", "yo", "hi!"];
var index = 0;
function setup() {
createCanvas(windowWidth, 100);
textAlign(CENTER);
}
function windowResized() {
resizeCanvas(windowWidth, 100);
}
function draw() {
background(220);
fill(255);
textSize(32);
text(words[index], width/2, height/2);
}
function mousePressed() {
index = floor(random(words.length));
console.log(index);
if (index == words.length) {
index = 0;
}
}