xxxxxxxxxx
47
off = 0;
y1 = 20;
x1 = 10;
y2 = -10;
x2 = -40;
function setup() {
createCanvas(700, 700);
background(237, 230, 216);
textFont('futura');
textStyle(BOLD);
textSize(12);
}
function draw() {
r = random(20, 150);
fill(0, r);
off = off + 0.01;
let nx = noise(off) * 10;
let ny = noise(off) * 2;
text("OK", x1 - nx, y1);
y1 = y1 + (10 * ny);
push();
rotate(PI);
text("OK", x2 - nx, y2);
pop();
y2 = y2 - (12 * ny);
if (y1 >= height - 10) {
x1 = x1 + 40;
y1 = 20;
}
if (y2 <= -height + 20) {
x2 = x2 - 40;
y2 = -10;
}
if (x1 >= width - 10) {
noLoop();
}
}