xxxxxxxxxx
50
//challenge 1
function preload() {
font = loadFont('Surreal.ttf');
}
function setup() {
createCanvas(540, 540);
}
function draw() {
background(255,0,0);
let x=tan(frameCount*0.015);
fill(0);
textSize(220);
textFont(font);
textAlign(CENTER);
translate(30,50);
scale(0.8);
push();
scale(1.2+x,0.5);
textLeading(200);
text('B\nI\nL\nL\nY',75,x*100+250);
pop();
push();
translate(x*100+360,200);
scale(1-x,1);
text('ARE',0,0);
pop();
push();
translate(-x*100+350,330);
scale(1.2,0.3+x);
text('YOU',0,0);
pop();
push();
translate(x*100+350,510);
scale(0.5,1+x);
text('DUMB',0,0);
pop();
}