Changes for page Pro White Music
Summary
Details
- Page properties
-
- Content
-
... ... @@ -13,4 +13,38 @@ 13 13 ></iframe> 14 14 {{/html}} 15 15 16 +{{html}} 17 +<select id="tracklist" onchange="changeTrack(this.value)" style="width: 100%; padding: 8px;"> 18 + <option value="">🎵 Select a track...</option> 19 + <option value="/bin/download/Sandbox/TestPage2/01%20-%20Shit%20out.mp3">01 - Shit Out</option> 20 + <option value="/bin/download/Sandbox/TestPage2/02%20-%20Pride%20and%20tradition.mp3">02 - Pride and Tradition</option> 21 + <option value="/bin/download/Sandbox/TestPage2/03%20-%20Land%20of%20the%20White.mp3">03 - Land of the White</option> 22 + <option value="/bin/download/Sandbox/TestPage2/04%20-%20Saturday%20night.mp3">04 - Saturday Night</option> 23 + <option value="/bin/download/Sandbox/TestPage2/05%20-%20Tales%20of%20honor.mp3">05 - Tales of Honor</option> 24 + <option value="/bin/download/Sandbox/TestPage2/06%20-%20Hail%20the%20new%20dawn.mp3">06 - Hail the New Dawn</option> 25 + <option value="/bin/download/Sandbox/TestPage2/07%20-%20The%20nationalist.mp3">07 - The Nationalist</option> 26 + <option value="/bin/download/Sandbox/TestPage2/08%20-%20Race%20land.mp3">08 - Race Land</option> 27 + <option value="/bin/download/Sandbox/TestPage2/09%20-%20Stand%20against.mp3">09 - Stand Against</option> 28 + <option value="/bin/download/Sandbox/TestPage2/10%20-%20Vision%20in%20my%20mind.mp3">10 - Vision in My Mind</option> 29 + <option value="/bin/download/Sandbox/TestPage2/11%20-%20Trtrv.mp3">11 - Trtrv</option> 30 + <option value="/bin/download/Sandbox/TestPage2/12%20-%20Defenders%20of%20the%20Reich.mp3">12 - Defenders of the Reich</option> 31 + <option value="/bin/download/Sandbox/TestPage2/13%20-%20Glory%20unending.mp3">13 - Glory Unending</option> 32 + <option value="/bin/download/Sandbox/TestPage2/14%20-%20Pulled%20over%20+%20Verstecktes%20Lied%20%28Suddenly%29.mp3">14 - Pulled Over + Verstecktes Lied (Suddenly)</option> 33 +</select> 16 16 35 +<br><br> 36 + 37 +<audio id="player" controls style="width: 100%;"> 38 + <source src="" type="audio/mpeg"> 39 + Your browser does not support the audio element. 40 +</audio> 41 + 42 +<script> 43 +function changeTrack(src) { 44 + var player = document.getElementById('player'); 45 + player.src = src; 46 + player.play(); 47 +} 48 +</script> 49 +{{/html}} 50 +