xxxxxxxxxx
65
off = 0;
y1 = 10;
x1 = 20;
y2 = -10;
x2 = -60;
function setup() {
createCanvas(700, 700);
background(237, 230, 216);
textFont('futura');
textStyle(BOLD);
textSize(12);
}
function draw() {
off = off + 0.1;
let n = noise(off) * 20;
r = random(50, 150)
fill(0, r);
text("OK", x1 - n, y1 + n);
y1 = y1 + 10;
r = random(150, 250);
fill(0, r);
push();
rotate(PI);
text("OK", x2 + n, y2);
pop();
y2 = y2 - 10;
if (x1 > 600 && y1 > 200 && y1 < height - 10) {
x1 = x1 + (y1 / 200);
x2 = x2 - (y1 / 200);
}
if (y1 >= height - 10 && x1 > 600) {
x1 = x1 - 70;
y1 = 10;
}
if (y2 <= -height + 10 && x1 > 600) {
x2 = x2 + 70;
y2 = -10;
}
if (y1 >= height - 10) {
x1 = x1 + 35;
y1 = 10;
}
if (y2 <= -height + 10) {
x2 = x2 - 35;
y2 = -10;
}
if (x1 > width - 20 && y1 < 200) {
noLoop()
}
}