xxxxxxxxxx
62
let h, b, o;
function setup() {
createCanvas(300, 800);
h = 0;
b = 0;
o = 0;
textAlign(CENTER, CENTER);
fill(255); //couleur du texte
angleMode(DEGREES);
VideoRecorder.addButton();
}
function draw() {
background(0); //couleur du fond
//hello
push();
translate(width / 2, height);
rotate(-90);
textSize(50);
text("hello", h, 100);
pop();
h = h + 1.5; //vitesse
if (h > 900) {
h = -100;
}
//bonjour
push();
translate(width / 8, height);
rotate(-90);
textSize(90);
text("bonjour", b, 100);
pop();
b = b + 2.5; //vitesse
if (b > 1000) {
b = -200;
}
//ola
push();
translate(-50, height);
rotate(-90);
textSize(20);
text("ola", o, 100);
pop();
o = o + 0.7; //vitesse
if (o > 850) {
o = -10;
}
}