xxxxxxxxxx
56
// The Meme 1 Assignment
//meme variables
var paragraph = "When you fail the test you thought you passed"
var words="So you try to act like its no big deal"
var harold;
var haroldface
var t = 320
var state = 0
function preload() {
harold = loadImage("harold.png")
haroldface = loadImage("haroldface.jpg")
}
function mousePressed() {
if (state === 0) {
state = 1;
} else if (state === 1) {
state = 0;
}
}
function setup() {
createCanvas(500, 380,);
}
function draw() {
background(220);
//meme image//
image(harold,0,0,width)
//meme text//
fill("white")
textStyle(BOLD)
textSize(16)
stroke("black")
strokeWeight(2)
textFont("arial")
text(paragraph,68,t)
t=t+1
if (t>330){
t= 1
}
if (state === 1) {
image(haroldface,0,0,width)
textStyle(BOLD)
textStyle(27)
stroke("black")
strokeWeight(2)
textFont("arial")
text(words,110,t)
}
}