xxxxxxxxxx
54
/*
This is my meme
by Qingyun Zhu
*/
var Meme;
click=0;
var Text1='Hello, My Name is Popo, A Cute Coding dog!'
var Text2='This is What I Look Like in my Working Sate.'
var Text3='Listening to Music is my Greatest Hobby!'
function mousePressed () {
click = click + 1;
if (click > 2) {
click = 0
}
}
function preload() {
Meme = loadImage('Dog-Popo.jpg');
Meme1 = loadImage('Dog-Popo-1.jpg');
Meme2 = loadImage('Dog-Popo-2.jpg');
}
function setup() {
createCanvas(500, 600);
}
function draw() {
background('#F0B606');
image(Meme, 50, 50, width-100, height-100);
fill('#E91E63');
stroke('#2196F3');
strokeWeight (3);
textFont ("Impact");
textSize (25);
text(Text1 ,30, 440);
if (click === 1) {
image (Meme1, 0, 125, width, height-200)
text (Text2, 30, 440);
}
else if (click === 2) {
image (Meme2,0, 130, width+70, height-180);
text (Text3, 30, 440);
}
}