Files
WKVS/www/intern/scripts/wkvs/script.js
2026-04-12 21:25:44 +02:00

13 lines
357 B
JavaScript

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);
});
});