xxxxxxxxxx
27
// The Meme 1 Assignment
//meme variables
var paragraph = "When you fail the test you thought you passed"
var harold;
function preload() {
harold = loadImage("harold.png")
}
function setup() {
createCanvas(500, 380,);
}
function draw() {
background(220);
//meme image//
image(harold,0,0,width,mouseX)
//meme text//
fill("white")
textStyle(BOLD)
textSize(19)
stroke("black")
strokeWeight(4)
textFont("menlo")
text(paragraph,60,320)
stroke()
}