From d5a03f6a74c4f4ec32cffffcaa642a122afb230d Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Mon, 1 Apr 2019 22:41:38 +0200 Subject: Optimized everything --- index.html | 104 ++++++++++++++++++++++++++++++++++++++----------------------- 1 file changed, 65 insertions(+), 39 deletions(-) (limited to 'index.html') diff --git a/index.html b/index.html index ff1c5ec..0424e8f 100644 --- a/index.html +++ b/index.html @@ -95,45 +95,60 @@ style="backface-visibility: visible; -webkit-backface-visibility: visible; pointer-events: all"> -

## Analyse

-
- Now, Arab sheikhs on the burning sands
- Come into their harems and clap their hands
- Said, "Come on, girls, are you ready to play?
- Let's have a little more of that swingin' today."
- Now, in the land of Fu Manchu
- The girls all now do the Suzie-Q
- Clap their hands in the center of the floor
- Saying, "Ching, ching, chop-suey, swing some more!"
-
-
- Now, geisha girls in old Japan
- Wink behind their peacock fans
- Since they learned to say, "Yeah!
- Let's swing it like Amelican's swing swing dance!"
-
-
- Now, Gypsy caravans have changed their mode
- They truck down the Romany road
- With their hi-de-hoes, and their hey-hey-diddle
- Doin' the swing on the Gypsy fiddle
-
-
- Them eastern wisemen know the story
- Of the swing with Oriental glory
- They stroke their beards and grin
- Sayin', "Swing, little children, till the dawn comes in!"
- Now, geisha girls in old Japan
- Wink behind their peacock fans
- Since they learned to say, "Yeah!
- Let's swing it like Amelican's swing swing dance!"
-
-
- Gypsy caravans have changed their mode
- They truck down the Romany road
- With their hi-de-hoes, and their hey-hey-diddle
- Doin' the swing on the Gypsy fiddle
-
+ + + + + + +
+ [INTRO]
+ 1. Strophe (0:08):
+ Now, Arab sheikhs on the burning sands
+ Come into their harems and clap their hands
+ Said, "Come on, girls, are you ready to play?
+ Let's have a little more of that swingin' today."

+ 2. Strophe (0:17):
+ Now, in the land of Fu Manchu
+ The girls all now do the Suzie-Q
+ Clap their hands in the center of the floor
+ Saying, "Ching, ching, chop-suey, swing some more!"

+ [Saxophon Solo, Melodie 1 (0:26)]
+ 3. Strophe (0:43):
+ Now, geisha girls in old Japan
+ Wink behind their peacock fans
+ Since they learned to say, "Yeah!
+ Let's swing it like Amelican's swing swing dance!"
+ [Saxophon Solo, Melodie 2 (0:51)]
+
+ [BRIDGE 1 (1:08)]
+ Now, Gypsy caravans have changed their mode
+ They truck down the Romany road
+ With their hi-de-hoes, and their hey-hey-diddle
+ Doin' the swing on the Gypsy fiddle

+ [Saxophon Solo, Melodie 2 (1:25)]
+ 4. Strophe (1:42):
+ Them eastern wisemen know the story
+ Of the swing with Oriental glory
+ They stroke their beards and grin
+ Sayin', "Swing, little children, till the dawn comes in!"

+ 5. Strophe (1:51):
+ Now, geisha girls in old Japan
+ Wink behind their peacock fans
+ Since they learned to say, "Yeah!
+ Let's swing it like Amelican's swing swing dance!"
+ [Saxophon Solo, Melodie 1 (1:59)]
+
+ [BRIDGE 2 (2:16)]
+ Gypsy caravans have changed their mode
+ They truck down the Romany road
+ With their hi-de-hoes, and their hey-hey-diddle
+ Doin' the swing on the Gypsy fiddle

+ [Saxophon Solo, Melodie 2 (2:33)]
+ [Fade out (3:00)]
+
+ Zeit:

+
@@ -175,6 +190,17 @@ } } }); + + document.getElementById('audio').addEventListener('timeupdate', () => { + //document.getElementById('time').innerText = document.getElementById('audio').currentTime.toFixed(0); + if (document.getElementById('audio').currentTime.toFixed(0) < 60) + document.getElementById('time').innerText = document.getElementById('audio').currentTime.toFixed(0); + else { + let seconds = Math.floor(document.getElementById('audio').currentTime - Math.floor(document.getElementById('audio').currentTime / 60) * 60); + if (seconds < 10) seconds = "0" + seconds; + document.getElementById('time').innerText = Number(Math.floor(document.getElementById('audio').currentTime / 60) + "." + seconds); + } + }); -- cgit v1.2.3