add custom style for tags
Some checks are pending
ci/woodpecker/push/publish Pipeline is pending

This commit is contained in:
Mylloon 2023-10-14 17:07:14 +02:00
parent cda62654a0
commit 1abbc86cc7
Signed by: Anri
GPG key ID: A82D63DFF8D1317F

View file

@ -1,14 +1,23 @@
class Tag {
constructor(variant, style = "") {
this.variant = variant;
this.style = style;
}
}
window.addEventListener("load", () => {
const tags = [
"Comment ça marche un PC 😵‍💫",
"Idiot certifié",
"undefined",
"/api/v1/love",
"Étudiant qui va rater son master",
"Peak D2 sur Valo 🤡",
"1312",
new Tag("Comment ça marche un PC 😵‍💫"),
new Tag("Idiot certifié"),
new Tag("undefined"),
new Tag("/api/v1/love", "font-family: monospace"),
new Tag("Étudiant qui va rater son master"),
new Tag("Peak D2 sur Valo 🤡"),
new Tag("1312"),
];
document.getElementById("subname").textContent =
tags[Math.round(Math.random() * (tags.length - 1))];
const random = Math.round(Math.random() * (tags.length - 1));
const element = document.getElementById("subname");
element.textContent = tags[random].variant;
element.style = tags[random].style;
});