First version, for githup; UNSTABLE, DO NOT USE!

This commit is contained in:
Fabio Herzig
2026-04-12 21:25:44 +02:00
commit a51fd9dbeb
423 changed files with 58560 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
const texts = document.querySelectorAll('.textWelcomeScreen');
texts.forEach(text => {
const characters = text.textContent.split('');
text.textContent = '';
characters.forEach((char, index) => {
const span = document.createElement('span');
span.textContent = char;
span.style.animationDelay = `${index * 0.1}s`;
text.appendChild(span);
});
});