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

View File

@@ -0,0 +1,24 @@
<link rel="stylesheet" href="/intern/css/wkvs.css">
<div class="welcomeScreen">
<div class="innerWelcomeScreen">
<p class="textWelcomeScreen title">WKVS</p>
<p class="textWelcomeScreen text">Kunstturnen</p>
</div>
</div>
<script>
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);
});
});
</script>