xxxxxxxxxx
40
let c
function setup() {
c = createCanvas(700,700);
textSize(90)
}
function draw() {
background("yellow");
text("P", (frameCount*1) % width, 50, 10)
text("a", (frameCount*30) % width, 100, 10)
text("a", (frameCount*20) % width, 200, 10)
text("l", (frameCount*15) % width, 300, 10)
text("e", (frameCount*25) % width, 500, 10)
push()
textAlign(RIGHT)
text("r", width - (frameCount % width), 150, 10)
text("l", width - (frameCount*10) % width, 410, 10)
text("l", width - (frameCount % width), 600, 10)
pop()
}
function mouseClicked() {
saveGif('Parallel', 6)
}