xxxxxxxxxx
47
let words = ["Ok Boomer", "#tired", "#caturday", "#ThankYouGameFreak", "Daddy Issues", "We Live In A Society","Somebody Stop Me","Mommy Issues","Smash the Patriarchy","ACAB"];
let word;
let rand;
function preload() {
img1 = loadImage("meme9.jpg");
img2 = loadImage("meme1.jpg");
img3 = loadImage("meme6.jpg");
}
function setup() {
createCanvas(500, 500);
background(0);
fill(250);
image(img1, 0, 0, width, height);
textSize(30);
let rand = round(random(words.length - 1));
let word = words[rand]
text(word, 20, 80);
}
function draw() {
if (keyIsPressed) {
if (key == "a") {
image(img1, 0, 0, width, height);
memez();
} else if (key == "s") {
image(img2, 0, 0, width, height);
memez();
} else if (key == "d") {
image(img3, 0, 0, width, height);
memez();
}
}
}
function memez(){
fill(250);
textSize(50);
let rand = round(random(words.length - 1));
let word = words[rand]
text(word, 20, 80);
}