first commit

This commit is contained in:
nix
2026-05-16 11:10:19 +02:00
commit 509c9b3737
172 changed files with 14496 additions and 0 deletions
Executable
+19
View File
@@ -0,0 +1,19 @@
// script normal
// change d'image tout les jours
const images = [
"autre/Image1.html",
"autre/Image2.html",
"autre/Image3.html",
"autre/Image4.html",
"autre/Image5.html",
"autre/Image6.html",
"autre/Image7.html",
"autre/Image8.html",
"autre/Image9.html",
]
const imageIndex = Math.floor(Date.now() / (1000 * 60 * 60 * 24)) % images.length
document.addEventListener("DOMContentLoaded", () => {
document.getElementById("image").href = images[imageIndex]
})