xxxxxxxxxx
37
var gif_loadImg, gif_createImg;
function preload() {
gif_loadImg = loadImage("girl.gif");
gif_createImg = createImg("girl.gif");
}
function setup() {
createCanvas(windowWidth, windowHeight);
background(0);
gif_createImg.hide();
imageMode(CENTER);
}
function draw() {
image(gif_loadImg, width / 2, height / 2);
}
function windowResized() {
print("resized to " + windowWidth + "," + windowHeight);
resizeCanvas(windowWidth, windowHeight);
}
function keyTyped() {
if (key === 'f') {
toggleFullscreen();
}
function toggleFullscreen() {
let fs = fullscreen();
fullscreen(!fs);
}
}