xxxxxxxxxx
50
let font;
function preload() {
font = loadFont("DelaGothicOne-Regular.ttf")
}
function setup() {
createCanvas(1080, 1080);
textFont(font);
textSize (220);
}
function draw() {
background(90,0,255);
fill (255,0,169);
push ();
scale(1.3, 2 + sin(frameCount*0.02)/5);
translate(110, 10);
textLeading(180,0);
text("T \nR \nA", -100, 160);
pop ();
push ();
scale(1.2 + sin(frameCount*0.01)/5, 2);
translate(290, 450);
text("NS", -30, 80);
pop ();
push ();
scale(1.15, 4 - sin(frameCount*0.01)/3);
translate(800, 450);
text("C", -100, -180);
pop ();
push ();
scale(1.15 , 2 + sin(frameCount*0.01)/3);
translate(900, 10);
rotate(PI);
text("E", 0, 0);
pop ();
push ();
scale(1.15 - sin(frameCount*0.01)/5, 4.2);
translate(640, 10);
rotate(PI);
text("ND", 0, 0);
pop ();
}