xxxxxxxxxx
33
function setup() {
createCanvas(400, 400);
overflow('hidden');
background(50);
writeText();
}
function writeText() {
let hi = createText("Hello", width/3, height/4);
hi.size(68);
hi.fill('skyBlue');
hi.play("waveIn", 0, 1);
hi.moveTo(width, height/4, 2, 3)
let world = createText("world!", width/3, height/2.5);
world.size(68);
world.fill(color(119, 198, 110));
world.play("write", 1, 2);
world.play("spinOut", 2, 2.4);
//world.moveTo(-width/2, height/2.5, 2, 3)
let p5teach = createText("I'm p5.teach", width/4, height/3);
p5teach.size(48);
p5teach.fill(color("rgb(246, 164, 184)"));
p5teach.play("write", 2.5, 3);
p5teach.resizeTo(72, 3, 4)
p5teach.moveTo(15, height/4, 3, 4)
}