diff --git a/blog/entries/index.html b/blog/entries/index.html index efbfb87..bcdf682 100644 --- a/blog/entries/index.html +++ b/blog/entries/index.html @@ -26,6 +26,22 @@ font-family: 'IM Fell English', serif; font-size: 20px; } + + + @keyframes colorshift { + 0% { color: hsl(0, 60%, 70%); } + 25% { color: hsl(90, 60%, 70%); } + 50% { color: hsl(180, 60%, 70%); } + 75% { color: hsl(270, 60%, 70%); } + 100% { color: hsl(360, 60%, 70%); } + } + + @keyframes levite { + 0% { transform: translateY(0px); } + 50% { transform: translateY(-5px); } + 100% { transform: translateY(0px); } + } + .fenetre { max-width: 500px; border: 1px solid black; @@ -81,9 +97,13 @@ + el.innerHTML = el.textContent.split('').map((c, i) => { + if (c === ' ') return ' '; + const delayColor = (i * 0.3).toFixed(1); + const delayLevite = (Math.random() * 4).toFixed(2); + const duree = (3 + Math.random() * 3).toFixed(2); + return `${c}`; + }).join(''); + diff --git a/blog/entries/march2026/bonjour.html b/blog/entries/march2026/bonjour.html index 14a3998..aca2e56 100644 --- a/blog/entries/march2026/bonjour.html +++ b/blog/entries/march2026/bonjour.html @@ -24,6 +24,22 @@ font-family: 'IM Fell English', serif; font-size: 20px; } + + + @keyframes colorshift { + 0% { color: hsl(0, 60%, 70%); } + 25% { color: hsl(90, 60%, 70%); } + 50% { color: hsl(180, 60%, 70%); } + 75% { color: hsl(270, 60%, 70%); } + 100% { color: hsl(360, 60%, 70%); } + } + + @keyframes levite { + 0% { transform: translateY(0px); } + 50% { transform: translateY(-5px); } + 100% { transform: translateY(0px); } + } + .fenetre { max-width: 500px; border: 1px solid black; @@ -78,9 +94,13 @@ + el.innerHTML = el.textContent.split('').map((c, i) => { + if (c === ' ') return ' '; + const delayColor = (i * 0.3).toFixed(1); + const delayLevite = (Math.random() * 4).toFixed(2); + const duree = (3 + Math.random() * 3).toFixed(2); + return `${c}`; + }).join(''); + diff --git a/blog/entries/march2026/multipotentiel.html b/blog/entries/march2026/multipotentiel.html index b43e674..fa0aab1 100644 --- a/blog/entries/march2026/multipotentiel.html +++ b/blog/entries/march2026/multipotentiel.html @@ -24,6 +24,22 @@ font-family: 'IM Fell English', serif; font-size: 20px; } + + + @keyframes colorshift { + 0% { color: hsl(0, 60%, 70%); } + 25% { color: hsl(90, 60%, 70%); } + 50% { color: hsl(180, 60%, 70%); } + 75% { color: hsl(270, 60%, 70%); } + 100% { color: hsl(360, 60%, 70%); } + } + + @keyframes levite { + 0% { transform: translateY(0px); } + 50% { transform: translateY(-5px); } + 100% { transform: translateY(0px); } + } + .fenetre { max-width: 500px; border: 1px solid black; @@ -85,9 +101,13 @@ + el.innerHTML = el.textContent.split('').map((c, i) => { + if (c === ' ') return ' '; + const delayColor = (i * 0.3).toFixed(1); + const delayLevite = (Math.random() * 4).toFixed(2); + const duree = (3 + Math.random() * 3).toFixed(2); + return `${c}`; + }).join(''); + diff --git a/blog/entries/march2026/retransmettre.html b/blog/entries/march2026/retransmettre.html index 57eb62e..1b723c1 100644 --- a/blog/entries/march2026/retransmettre.html +++ b/blog/entries/march2026/retransmettre.html @@ -25,6 +25,22 @@ font-family: 'IM Fell English', serif; font-size: 20px; } + + @keyframes colorshift { + 0% { color: hsl(0, 60%, 70%); } + 25% { color: hsl(90, 60%, 70%); } + 50% { color: hsl(180, 60%, 70%); } + 75% { color: hsl(270, 60%, 70%); } + 100% { color: hsl(360, 60%, 70%); } + } + + @keyframes levite { + 0% { transform: translateY(0px); } + 50% { transform: translateY(-5px); } + 100% { transform: translateY(0px); } + } + + .fenetre { max-width: 500px; border: 1px solid black; @@ -79,9 +95,13 @@ + el.innerHTML = el.textContent.split('').map((c, i) => { + if (c === ' ') return ' '; + const delayColor = (i * 0.3).toFixed(1); + const delayLevite = (Math.random() * 4).toFixed(2); + const duree = (3 + Math.random() * 3).toFixed(2); + return `${c}`; + }).join(''); + diff --git a/depeches.html b/depeches.html index 20dff23..459f19f 100644 --- a/depeches.html +++ b/depeches.html @@ -14,6 +14,20 @@ font-size: 20px; } + @keyframes colorshift { + 0% { color: hsl(0, 60%, 70%); } + 25% { color: hsl(90, 60%, 70%); } + 50% { color: hsl(180, 60%, 70%); } + 75% { color: hsl(270, 60%, 70%); } + 100% { color: hsl(360, 60%, 70%); } + } + + @keyframes levite { + 0% { transform: translateY(0px); } + 50% { transform: translateY(-5px); } + 100% { transform: translateY(0px); } + } + .fenetre { max-width: 600px; border: 1px solid black; @@ -154,9 +168,13 @@ fetch('/api/depeches') }); const el = document.getElementById('titre-nav'); -el.innerHTML = el.textContent.split('').map(c => - c === ' ' ? ' ' : `${c}` -).join(''); +el.innerHTML = el.textContent.split('').map((c, i) => { + if (c === ' ') return ' '; + const delayColor = (i * 0.3).toFixed(1); + const delayLevite = (Math.random() * 4).toFixed(2); + const duree = (3 + Math.random() * 3).toFixed(2); + return `${c}`; +}).join(''); diff --git a/index.html b/index.html index 2eedca1..f6a7764 100644 --- a/index.html +++ b/index.html @@ -23,6 +23,20 @@ font-family: 'IM Fell English', serif; font-size: 20px; } + @keyframes colorshift { + 0% { color: hsl(0, 60%, 70%); } + 25% { color: hsl(90, 60%, 70%); } + 50% { color: hsl(180, 60%, 70%); } + 75% { color: hsl(270, 60%, 70%); } + 100% { color: hsl(360, 60%, 70%); } + } + + @keyframes levite { + 0% { transform: translateY(0px); } + 50% { transform: translateY(-5px); } + 100% { transform: translateY(0px); } + } + .fenetre { max-width: 550px; border: 1px solid black; @@ -49,7 +63,30 @@ height: 400px; width: auto; display: block; - } + } + .now { + font-size: 0.75rem; + font-style: italic; + color: #555; + padding-top: 0.6rem; + margin-top: 0.8rem; + margin-right: -3rem; + line-height: 1.6; + } + .now-titre { + font-style: normal; + color: #999; + font-size: 0.7rem; + display: block; + margin-bottom: 0.2rem; + } + + @media (max-width: 600px) { + body { font-size: 17px; } + .fenetre { grid-template-columns: 1fr; } + .fenetre img.perso { width: 100%; height: auto; } + } + @media (max-width: 600px) { body { @@ -66,8 +103,9 @@ -
- eweng.space ☆ +
+ eweng.space ☆ + /now : faut que je fasses les courses.
@@ -88,9 +126,13 @@
diff --git a/qui.html b/qui.html index 1e1e712..d41dff6 100644 --- a/qui.html +++ b/qui.html @@ -23,6 +23,21 @@ font-family: 'IM Fell English', serif; font-size: 20px; } + + @keyframes colorshift { + 0% { color: hsl(0, 60%, 70%); } + 25% { color: hsl(90, 60%, 70%); } + 50% { color: hsl(180, 60%, 70%); } + 75% { color: hsl(270, 60%, 70%); } + 100% { color: hsl(360, 60%, 70%); } + } + + @keyframes levite { + 0% { transform: translateY(0px); } + 50% { transform: translateY(-5px); } + 100% { transform: translateY(0px); } + } + .fenetre { max-width: 950px; border: 1px solid black; @@ -92,9 +107,13 @@
diff --git a/reviews/albums/az.html b/reviews/albums/az.html index 9edb92e..603c988 100644 --- a/reviews/albums/az.html +++ b/reviews/albums/az.html @@ -13,6 +13,20 @@ font-family: 'IM Fell English', serif; font-size: 20px; } + + @keyframes colorshift { + 0% { color: hsl(0, 60%, 70%); } + 25% { color: hsl(90, 60%, 70%); } + 50% { color: hsl(180, 60%, 70%); } + 75% { color: hsl(270, 60%, 70%); } + 100% { color: hsl(360, 60%, 70%); } + } + + @keyframes levite { + 0% { transform: translateY(0px); } + 50% { transform: translateY(-5px); } + 100% { transform: translateY(0px); } + } .fenetre { max-width: 900px; @@ -192,11 +206,14 @@
\ No newline at end of file diff --git a/reviews/index.html b/reviews/index.html index 9c1817c..1d16672 100644 --- a/reviews/index.html +++ b/reviews/index.html @@ -14,7 +14,20 @@ font-size: 20px; } - /* ── identique à ton site ── */ + @keyframes colorshift { + 0% { color: hsl(0, 60%, 70%); } + 25% { color: hsl(90, 60%, 70%); } + 50% { color: hsl(180, 60%, 70%); } + 75% { color: hsl(270, 60%, 70%); } + 100% { color: hsl(360, 60%, 70%); } + } + + @keyframes levite { + 0% { transform: translateY(0px); } + 50% { transform: translateY(-5px); } + 100% { transform: translateY(0px); } + } + .fenetre { max-width: 600px; border: 1px solid black; @@ -33,7 +46,6 @@ min-width: 0; } - /* ── nav retour ── */ .retour { font-family: 'IM Fell English', serif; font-size: 20px; @@ -181,11 +193,14 @@ fetch('data/albums.json') document.getElementById('grille').textContent = 'impossible de charger les albums.'; }); -// animation titre const el = document.getElementById('titre-nav'); -el.innerHTML = el.textContent.split('').map(c => - c === ' ' ? ' ' : `${c}` -).join(''); +el.innerHTML = el.textContent.split('').map((c, i) => { + if (c === ' ') return ' '; + const delayColor = (i * 0.3).toFixed(1); + const delayLevite = (Math.random() * 4).toFixed(2); + const duree = (3 + Math.random() * 3).toFixed(2); + return `${c}`; +}).join(''); \ No newline at end of file