xxxxxxxxxx
function setup() {
createCanvas(windowWidth, windowHeight);
frameRate(2);
background(random(255),random(255),random(255));
}
function draw() {
textSize(random(100));
fill(random(255),random(255),random(255));
text('STAY',mouseX + 20, mouseY + 30);
//fill(random(255),random(255),random(255));
//text('Al-Saleh',mouseX + 15, mouseY + 60);
fill(random(255),random(255),random(255));
text('HOME ! ',mouseX + 10, mouseY + 90);
}