xxxxxxxxxx
34
/*
meme. part 1
*/
var spiderImage;
function preload() {
spiderImage = loadImage("Spider.jpeg")
}
function mouseClicked() {
save("Assingment 1.png");
}
function setup() {
createCanvas(750, 450);
}
function draw() {
background(220);
image(spiderImage, 0,0, width, height);
textSize(20);
stroke('yellow');
strokeWeight(3);
//textFont("menlo");
text("the person who wastes my salary", 150, 180, 150, 100);
text("ME!", 570, 250)
/*var c = get(mouseX, mouseY);
fill(c);
ellipse(mouseX, mouseY, 100);
*/
}