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('');
+