xxxxxxxxxx
55
let boje;
let secTxt = [
"ogrlica",
"minđuše",
"narukvica",
"šešir",
"prsten",
"šnala",
"manžetna",
"marama",
"ešarpa",
"lančić",
"naočare"
];
function setup() {
createCanvas(400, 400);
frameRate(1);
boje = [
color(255, 0, 0),
color(0, 255, 0),
color(0, 0, 255),
color(100, 200, 10),
color(5, 70, 220),
"#ff8080"
];
}
function draw() {
// background("#ff8080");
let c = random(boje);
background(c);
textAlign(CENTER);
fill("white");
textFont("Palantino");
textSize(50);
/*
if (hour() == 12) {
text("neon noon", 200, 200);
} else {
text("nije neon noon", 200, 200);
}
*/
let s = second();
let m = minute();
let h = hour();
text(s + " " + secTxt[s], 200, 200);
// text(s, 200, 200);
}