xxxxxxxxxx
72
function setup() {
createCanvas(400, 400);
textAlign(CENTER, CENTER);
every(1).seconds
.showAll([v1, v2, v3, v4, v5, v6, v7, v8, v9, v10]);
}
function draw() {
background(220);
}
function v1() {
background('red');
fill('blue');
text('00:00', 200, 200);
}
function v2() {
background('black');
fill('white');
textSize(64);
text('00:01', 200, 200);
}
function v3() {
background('yellow');
fill('purple');
textSize(256);
text('00:02', 200, 200);
}
function v4() {
background('orange');
fill('green');
textSize(12);
text('00:03', 200, 200);
}
function v5() {
background('pink');
fill('brown');
textSize(32);
text('00:04', 200, 200);
}
function v6() {
background('cyan');
fill('magenta');
textSize(128);
text('00:05', 200, 200);
}
function v7() {
background('white');
fill('black');
textSize(16);
text('00:06', 200, 200);
}
function v8() {
background('green');
fill('orange');
textSize(64);
text('00:07', 200, 200);
}
function v9() {
background('purple');
fill('yellow');
textSize(256);
text('00:08', 200, 200);
}
function v10() {
background('brown');
fill('pink');
textSize(12);
text('00:09', 200, 200);
}