sc-player-standard.html 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <title>SC player example: Standard Skin</title>
  6. <link rel="stylesheet" href="styles/sc-player-standard.css" type="text/css">
  7. <link rel="stylesheet" href="styles/sc-player-horizontal.css" type="text/css">
  8. <link rel="stylesheet" href="styles/sc-player-vertical.css" type="text/css">
  9. <link rel="stylesheet" href="styles/sc-player-super.css" type="text/css">
  10. <link rel="stylesheet" href="styles/sc-player-green.css" type="text/css">
  11. <link rel="stylesheet" href="styles/sc-player-blue.css" type="text/css">
  12. <link rel="stylesheet" href="styles/sc-player-orange.css" type="text/css">
  13. <script type="text/javascript" src="../js/sc-player.js"></script>
  14. <script type="text/javascript">
  15. window.onclick = function(e) {
  16. if (e.target.id && e.target.id.slice(0, 5) === 'style' && e.target.className.indexOf('selected') === -1) {
  17. var name = e.target.id.split('_'), sel = ' selected',
  18. classList = e.target.className.split(' '),
  19. prevSelect = e.target.parentNode.querySelector('.selected');
  20. e.target.parentNode.nextElementSibling.className = name[1] +' '+ name[2];
  21. if (prevSelect) {
  22. prevSelect.className = prevSelect.className.substring(0, prevSelect.className.length - sel.length);
  23. }
  24. e.target.className += sel;
  25. }
  26. }
  27. </script>
  28. </head>
  29. <body>
  30. <a href="sc-player-modern.html">Modern Player</a>
  31. <h1>Standart Skin</h1>
  32. <div class="post">
  33. <h2>horizontal <span id="style_horizontal_green" class="option-green selected">green</span> <span id="style_horizontal_blue" class="option-blue">blue</span> <span id="style_horizontal_orange" class="option-orange">orange</span></h2>
  34. <div class="horizontal green">
  35. <a href="https://soundcloud.com/tunguska-ems" class="sc-player">Tunguska Electronic Music Society</a>
  36. </div>
  37. <h2>vertical <span id="style_vertical_green" class="option-green">green</span> <span id="style_vertical_blue" class="option-blue selected">blue</span> <span id="style_vertical_orange" class="option-orange">orange</span></h2>
  38. <div class="vertical blue">
  39. <a href="https://soundcloud.com/hitboxx" class="sc-player">The Nth °</a>
  40. </div>
  41. </div>
  42. <div class="sidebar">
  43. <h2>super <span id="style_super_green" class="option-green">green</span> <span id="style_super_blue" class="option-blue">blue</span> <span id="style_super_orange" class="option-orange selected">orange</span></h2>
  44. <div class="super orange">
  45. <div class="sc-player">
  46. <a href="https://soundcloud.com/aethernaut/final-frontier">Final Frontier</a>
  47. <a href="https://soundcloud.com/chibinoize/technicolor">Technicolor</a>
  48. <a href="https://soundcloud.com/anzomusic/castlevania-bloody-tears-anzo">Castlevania - Bloody Tears (Anzo Cover)</a>
  49. <a href="https://soundcloud.com/fuskasker/fusk-asker-bully-original-mix">Fusk Asker - Bully (Original Mix)</a>
  50. <a href="https://soundcloud.com/ensnare-1/there-is-always-love">There Is Always Love</a>
  51. <a href="https://soundcloud.com/dubmood/dubmood-chiptune">Dubmood - Chiptune</a>
  52. <a href="https://soundcloud.com/protoflight/post">Post</a>
  53. <a href="https://soundcloud.com/fantomenk/fantomenk-a-tiny-spaceships">A Tiny Spaceship's Final Mission</a>
  54. <a href="https://soundcloud.com/aethernaut/shine-get">Shine Get</a>
  55. <a href="https://soundcloud.com/tastyselection/demon-groove-saturate-teaser">Demon Groove - Saturate</a>
  56. <a href="https://soundcloud.com/tastyselection/demon-groove-lenningrad-2034">Demon Groove - Lenningrad 2034</a>
  57. <a href="https://soundcloud.com/bossfightswe/dr-wilys-castle-stage-1">Dr. Wily's Castle: Stage 1</a>
  58. <a href="https://soundcloud.com/ensnare-1/yes-we-have-made-it-to-the">Yes, We Have Made it to the Dungeon Of Tropes</a>
  59. <a href="https://soundcloud.com/shawndaley/in-brightest-day">In Brightest Day</a>
  60. <a href="https://soundcloud.com/shawndaley/a-hero-stands-tall">A Hero Stands Tall</a>
  61. <a href="https://soundcloud.com/myuu/lavender-town-pokemon-cover">Lavender Town (Pokémon Cover)</a>
  62. <a href="https://soundcloud.com/sirrus-3/the-xx-intro-dream-city-remix">XX Intro Dream</a>
  63. </div>
  64. </div>
  65. </div>
  66. <div class="footer">2017</div>
  67. </body>
  68. </html>