You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

37 lines
569 B
JavaScript

const nameSpace = document.getElementById("name-space");
const list = [
"kamo",
"sumo",
"camo",
"gamo",
"fra",
"salamino",
"zuppetta",
"soup eater",
"soul eater",
"sound eater",
"k",
"eheheh",
"🗿",
"🐡",
"fridge haunter",
"fridge hunter",
"fridge terror",
"niiiice",
"slice",
"BUT",
];
function randomName() {
return list[Math.floor(Math.random() * list.length)];
}
setInterval(() => {
nameSpace.innerHTML = randomName();
nameSpace.classList.add("rotate");
setTimeout(() => {
nameSpace.classList.remove("rotate");
}, 5000);
}, 5000);