xxxxxxxxxx
36
let button;
let complimentText = "";
const compliments = [
"You are awesome!",
"You're a great friend.",
"You have a beautiful smile.",
"You are incredibly talented.",
"You are so kind and thoughtful.",
"You light up the room.",
"You are amazing just the way you are.",
"You are so creative.",
"You have a great sense of humor.",
"You are a wonderful person."
];
function setup() {
createCanvas(windowWidth, windowHeight);
button = createButton('Get a Compliment');
button.position(width / 2 - 50, height / 2 + 20);
button.mousePressed(showCompliment);
textAlign(CENTER, CENTER);
textSize(32);
noLoop();
}
function draw() {
background(random(255), random(255), random(255));
fill(255);
text(complimentText, width / 2, height / 2);
}
function showCompliment() {
complimentText = random(compliments);
redraw();
}