xxxxxxxxxx
56
let txt = [
"I remember my grandparents being frugal.",
"They would use every piece of an animal.",
"They would wash plastic bags to reuse.",
"They would never spend money frivolously.",
"Nothing would go to waste.",
"I wonder what stories we'll tell\nour grandchildren.",
"I wonder if they'll think we're\ncrazy for avoiding crowds.",
"I wonder if they'll understand the\nhorror of other people.",
"I wonder if they'll understand why\nwe hold them tight.",
"I wonder if an errant cough will\nsend them into a panic attack.",
"I wonder."
];
// text color fade with bg?
let font;
let idx = 0;
let timeCtr = 0;
const col1 = "#070B34"; //https://www.schemecolor.com/night-sky-color-palette.php
const col2 = "#daf6dd"; //https://www.schemecolor.com/beauty-of-steps-color-scheme.php
function preload() {
font = loadFont("m5x7.ttf");
}
function setup() {
createCanvas(1000, 1000);
textFont(font);
textSize(70);
frameRate(30);
}
function draw() {
timeCtr++;
if (timeCtr < 100) {
background(lerpColor(color(col2),color(col1),map(timeCtr,0,100,1.0,0.0)))
} else if (timeCtr < 200) {
background(lerpColor(color(col2),color(col1),map(timeCtr,100,200,0.0,1.0)))
} else timeCtr = 0;
// background(220);
textAlign(CENTER,CENTER);
text(txt[idx],width/2,height/2);
if (frameCount % 250 == 0) {
idx++;
if (idx > txt.length-1) idx = 0;
}
}