xxxxxxxxxx
44
let x = 0;
let xDirection = "right";
let y = 0;
let yDirection = "up";
function setup() {
createCanvas(400, 400);
textAlign(CENTER, CENTER);
textSize(50)
textFont("Arial Rounded MT Bold")
}
function draw() {
background(300,90);
if (x >= 260) {
xDirection = "left";
} else if (x <= 80) {
xDirection = "right";
}
if (xDirection == "right") {
x += 2;
} else {
x -= 2;
}
if (y >= 380) {
yDirection = "up";
} else if (y <= 30) {
yDirection = "down";
}
if (yDirection == "down") {
y += 2;
} else {
y -= 2;
}
fill("red")
text("BOUNCE", x, y , 50);
}
function mouseClicked() {
saveGif("words", 5);
}