xxxxxxxxxx
46
let words = "DVD";
// let img;
let w = {
x: 0,
y: 0,
sx: 2,
sy: 2
}
let r = 0;
let b = 255;
let g = 0;
function setup() {
createCanvas(600, 400);
}
function rancol() {
r = random(0, 255);
g = random(0, 255);
b = random(0, 255);
}
function draw() {
background(0);
textSize(30)
fill(r, g, b);
if (w.x > width - 62 || w.x < 0) {
w.sx = w.sx * -1;
rancol();
}
if (w.y > height - 22 || w.y < 0) {
w.sy = w.sy * -1;
rancol();
}
// image(img, 0, 0);
text(words, w.x, w.y, 50, 70);
// ellipse(w.x, w.y, 20, 20);
w.x = w.x + w.sx;
w.y = w.y + w.sy;
}