xxxxxxxxxx
52
function preload() {
img = loadImage('https://source.unsplash.com/random');
}
function setup() {
createCanvas(1800, 1800);
let x3 = random(width / 2);
let y3 = random(height / 2);
let pix3 = img.get(x3, y3);
let x4 = random(width / 2);
let y4 = random(height / 2);
let pix4 = img.get(x4, y4);
background(pix4);
noStroke();
fill(pix3);
let w = random(width);
let h = random(100, 300);
rect(x3, 0, w, h + 50);
image(img, x3 + 50, 0, w-100, h);
}
function draw() {
var x1 = floor(random(width));
var y1 = -10;
var x2 = round(x1 + random(-2, 2));
var y2 = round(y1 + random(0, 10));
var w = floor(random(10, 40));
var h = height;
set(x2, y2, get(x1, y1, w, h));
}
function keyReleased() {
if (keyCode == ENTER || keyCode == RETURN) {
noLoop();
}
if (keyCode == DELETE || keyCode == BACKSPACE) {
loop();
}
}