xxxxxxxxxx
43
// A sketch that resizes itself to fill the window
// Mangtronix - 2020-09-30
// MIT License
let help = "Press f (possibly twice) to toggle fullscreen";
function setup() {
createCanvas(windowWidth, windowHeight);
print(help);
}
function draw() {
let border = 30;
background('#009bb4');
// A rectangle
fill('#f39100');
noStroke();
rect(border, border, windowWidth - 2 * border, windowHeight - 2 * border);
}
function windowResized() {
resizeCanvas(windowWidth, windowHeight);
}
function keyTyped() {
// $$$ For some reason on Chrome/Mac you may have to press f twice to toggle. Works correctly on Firefox/Mac
if (key === 'f') {
toggleFullscreen();
}
// uncomment to prevent any default behavior
// return false;
}
// Toggle fullscreen state. Must be called in response
// to a user event (i.e. keyboard, mouse click)
function toggleFullscreen() {
let fs = fullscreen(); // Get the current state
fullscreen(!fs); // Flip it!
}
// Bauhaus colours from https://www.uni-weimar.de/en/university/structure/central-university-facilities/university-communications/corporate-communication/colours/