xxxxxxxxxx
38
/*
Cat image is from:
https://www.pexels.com/photo/close-up-of-a-cat-with-closed-eyes-19587543/
*/
var sleepyKittyImage;
function preload() {
sleepyKittyImage = loadImage('sleepyKitty.jpg')
}
function setup() {
createCanvas(300, 400);
}
function draw() {
background(0);
image(sleepyKittyImage, 0, 0, 300, 400);
//top text
fill('white')
textStyle(BOLD)
textSize(33)
text('DREAM BIG', 50, 40);
//bottom text
fill('white')
textStyle(BOLD)
textSize(33)
text('SNOOZE LOUDER', 4, 390);
/* Pun is from https://punfinity.com/sleep-puns/ */
}
function mousePressed() {
save('Assignment4_SawyerFarias.png')
}