xxxxxxxxxx
14
let img; // Declare variable 'img'.
function setup() {
createCanvas(720, 400);
img = loadImage('laptop.png'); // Load the image
}
function draw() {
// Displays the image at its actual size at point (0,0)
image(img, 0, 0);
// Displays the image at point (0, height/2) at eighth size
image(img, 0, height / 2, img.width / 8 + mouseX, img.height / 8 + mouseY);
}