xxxxxxxxxx
31
let img5;
let img6;
let scroll = 0;
function preload() {
img5 = loadImage("Instagram_scroll.png");
img6 = loadImage("Insta_bar.PNG");
}
function setup() {
createCanvas(302, 536);
imageMode(CENTER, CENTER);
}
function draw() {
background(255);
Instagram();
}
function Instagram() {
translate(0, scroll);
image(img5, width / 2, height * 5 + 280, width, 5956);
image(img6, width / 2, 20, width, 30);
console.log(scroll);
}
function mouseWheel(event) {
scroll -= event.delta;
}