xxxxxxxxxx
49
x = 110;
woff = 0;
function setup() {
createCanvas(700, 700);
background(231, 201, 148);
}
function draw() {
strokeWeight(0.5);
stroke(231, 201, 148);
r = random(1, 3);
woff = woff + 0.1;
let n = noise(woff) * 2;
if (frameCount < r) {
fill(118, 148, 46);
}
if (frameCount > r) {
fill(251, 205, 223);
}
if (frameCount > r + 1) {
fill(118, 148, 46);
}
rect(x * n, 10, 50 * n, height - 20);
x = x + 100 * n
if (x > 650) {
fill(118, 148, 46);
rect(50, 10, 50, height - 20);
fill(70, 70, 33);
r1 = random(50, 650);
rect(50, r1, 50, 100 * n);
noLoop();
}
strokeWeight(20);
stroke(230, 223, 210);
noFill();
rect(0, 0, width, height);
}