xxxxxxxxxx
22
let linkPage;
function setup() {
createCanvas(windowWidth, windowHeight);
linkPage = createA("https://idmp5.github.io", "IDM p5 Website");
}
function draw() {
background(220, 20, 120);
linkPage.position(10, frameCount % (height - 20));
}
function mouseClicked() {
if (random() < 0.5) {
let newLinkPage = createA("https://idmp5.github.io", "IDM p5 Website");
newLinkPage.position(random(0.75 * width), random(height - 20));
} else {
let newLinkPage = createA("https://idmp5.github.io", "IDM p5 Website");
newLinkPage.position(mouseX + 4, mouseY + 4);
}
}