xxxxxxxxxx
47
function preload() {
font = loadFont('Surreal.ttf');
}
function setup() {
createCanvas(540, 540);
}
function draw() {
background(0);
let x=tan(frameCount*0.02);
fill(255,0,0);
textSize(180);
textFont(font);
textAlign(CENTER);
textLeading(150);
text('W\nH\nY',100,x*100+180);
textSize(220);
push();
translate(x*100+360,100);
scale(0.27,0.27);
text('WOULD YOU',0,0);
pop();
push();
translate(-x*100+350,330);
scale(1.3,1.3);
text('DO',0,0);
pop();
push();
translate(x*100+350,470);
scale(0.7,0.7);
text('THAT',0,0);
pop();
}