Herzlich willkommen zum SELF-Treffen 2026
vom 24.04. – 26.04.2026 in Halle (Saale)

Beispiel:Karaoke-3.html

Aus SELFHTML-Wiki
Wechseln zu: Navigation, Suche

<!DOCTYPE html> <html lang="de"> <head>

 <meta charset="utf-8">
 <meta name="viewport" content="width=device-width, initial-scale=1.0">
 <link rel="stylesheet" media="screen" href="./Beispiel:Grundlayout.css">
 <title>Scarborough Fair – Liedtext mit Akkorden</title>
 <style>
   body {
     font-family: sans-serif;
     max-width: 60em;
     margin: 0 auto;
   }
   audio {
     width: 100%;
     position: sticky;
     top: 0;
     z-index: 10;
     background: white;
     padding: 0.5em 0;
   }
 
   .lyrics { 
     font-size: 1.2em;
     line-height: 2.3;
     margin-bottom: 3em;
   }
   .part {
     margin: 0;
     color: #2f6fed;
     font-weight: bold;
   }
   .line {
     margin: 0;
     padding: .2em 1em;
     opacity: .5;
     scroll-margin: 40vh;
     transition: background-color .18s ease, opacity .18s ease, transform .18s ease;
   }
   .line.active {
     opacity: 1;
     background: #fff27a;
     transform: scale(1.01);
   }
   ruby {
     ruby-position: over;
     margin-right: .2em;
   }
   rt {
     font-size: .78em;
     color: #d04a3a;
     font-weight: 700;
     letter-spacing: .02em;
   }
 </style>

</head> <body>

 <header>

🎤 Scarborough Fair

 </header>


 <audio id="player" controls>
   <source src="/images/c/c8/Scarborough_Fair.mp3" type="audio/mpeg">
   Dein Browser unterstützt das Audio-Element nicht.
 </audio>


 <section class="lyrics">

1.

AreAm you going to ScarboroughG Fair?Am

CParsley, sageAm, rose-maryD and thyme,Am

Remember meC to one who lives there,G

SheAm once wasG a true love of mine.Am


2.

TellAm her to make me a cambricG shirt,Am

CParsley, sageAm, rose-maryD and thyme,Am

Without no seamsC nor needle-work,G

ThenAm she'll beG a true love of mine.Am

3.

TellAm her to find me an acreG of land,Am

CParsley, sageAm, rose-maryD and thyme,Am

Between the salt waterC and the sea strands,G

ThenAm she'll beG a true love of mine.Am

4.

TellAm her to plough it with a sickleG of leather,Am

CParsley, sageAm, rose-maryD and thyme,Am

And bind it allC with a bunch of heather,G

ThenAm she'll beG a true love of mine.Am

5. (1. Strophe wiederholen)

AreAm you going to ScarboroughG Fair?Am

CParsley, sageAm, rose-maryD and thyme,Am

Remember meC to the one who lives there,G

SheAm once wasG a true love of mine.Am

 </section>
 <script>
   document.addEventListener('DOMContentLoaded', function () {
     const audio = document.getElementById('player');
     const lines = Array.from(document.querySelectorAll('.line'));
     const times = lines.map(line => parseFloat(line.dataset.time));
     let activeIndex = -1;
     function findActiveIndex(currentTime) {
       for (let i = times.length - 1; i >= 0; i--) {
         if (currentTime >= times[i]) return i;
       }
       return -1;
     }
     function updateLyrics() {
       const newIndex = findActiveIndex(audio.currentTime);
       if (newIndex === activeIndex) return;
       if (activeIndex >= 0) lines[activeIndex].classList.remove('active');
       if (newIndex >= 0) {
         lines[newIndex].classList.add('active');
         lines[newIndex].scrollIntoView({ behavior: 'smooth', block: 'center' });
       }
       activeIndex = newIndex;
     }
     audio.addEventListener('timeupdate', updateLyrics);
     audio.addEventListener('seeked', updateLyrics);
     audio.addEventListener('play', updateLyrics);
     updateLyrics();
   });
 </script>

</body> </html>