You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

index.html 1.1KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1">
  6. <title>Playback</title>
  7. <link rel="stylesheet" href="style.css">
  8. </head>
  9. <body>
  10. <div id="group-info">
  11. <div id="is-playing">Not Playing</div>
  12. <div id="progress-text"></div>
  13. </div>
  14. <div id="group-bar">
  15. <progress id="progress"></progress>
  16. </div>
  17. <div id="group-buttons">
  18. <button id="mute">Mute</button>
  19. <button id="skip-back">&lt;</button>
  20. <button id="pause">||</button>
  21. <button id="skip-forward">&gt;</button>
  22. <button id="exit">Exit</button>
  23. </div>
  24. <div id="group-volume">
  25. Volume <span id="volume-text">0</span>%<br>
  26. <input id="volume" type="range">
  27. </div>
  28. <div id="group-sub-delay">
  29. Subtitle Delay <span id="sub-delay">0</span>s<br>
  30. <button id="sub-delay-less2">-1</button>
  31. <button id="sub-delay-less">-0.1</button>
  32. <button id="sub-delay-reset">0</button>
  33. <button id="sub-delay-more">+0.1</button>
  34. <button id="sub-delay-more2">+1</button>
  35. </div>
  36. <script src="/webstuff.js"></script>
  37. <script src="script.js"></script>
  38. </body>
  39. </html>