xxxxxxxxxx
43
let font;
function preload() {
font = loadFont('ZCOOLKuaiLe-Regular.ttf');
}
function setup() {
createCanvas(540, 540);
}
function draw() {
background(244, 158, 94,5);
let v = sin(frameCount*0.1);
let y = -tan(frameCount*0.1);
// blendMode(HARD_LIGHT)
for (i=0;i<20;i++) {
push()
fill(65, 90, 143)
stroke(0)
strokeWeight(2)
textFont(font);
textSize(v*60);
text('QUIT',v*900,30*i);
pop()
push()
rotate(frameCount*y*5);
fill(251, 215, 78,30)
strokeWeight(1)
stroke(217, 68, 75)
rect(0,i*30,650+v*300,30);
pop()
} }