xxxxxxxxxx
67
let x = 0,
y = 0,
end = 100;
let monoFont;
function preload(){
monoFont = loadFont('terminal-grotesque-webfont.ttf'
);
}
function setup() {
createCanvas(400, 400);
//frameRate(50);
textFont(monoFont);
textSize(28);
fill(255);
}
let time = 0
function zeroDraw() {
background(0)
text("0", 200, 200);
let zeroLoop =
time += 1.5
if (time < 10) {
text('0', 200, 170);
} else if (time < 20) {
text('0', 230, 170);
} else if (time < 30) {
text('0', 230, 200);
} else if (time < 40) {
text('0', 230, 230);
}
else if (time < 50) {
text('0', 200, 230);
}
else if (time < 60) {
text('0', 170, 230);
}
else if (time < 70) {
text('0', 170, 200)
}
else if (time < 80) {
text('0', 170, 170);
}
}
function draw(){
for (let i = 0; i < 4; i++){
zeroDraw();
}
}