Advertisement
ruesha

minimalistic music player

Feb 6th, 2022
352
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.42 KB | None | 0 0
  1. <script src="//ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
  2.  
  3. <!-------MUSIC PLAYER BY GLENTHEMES------->
  4. <script src="//static.tumblr.com/gtjt4bo/QRmphdsdv/glenplayer02.js"></script>
  5.  
  6. <style type="text/css">
  7. /*-------MUSIC PLAYER BY GLENTHEMES-------*/
  8. #glenplayer02 {
  9. position:absolute;
  10. top:9.2em;
  11. left:0.3em;
  12. width:150px
  13. ;z-index:5
  14. }
  15. #glenplayer02 a {text-decoration:none;}
  16.  
  17. #glenplayer02 > div {
  18. align-self:center;
  19. -webkit-align-self:center;
  20. }
  21.  
  22. .music-controls {
  23. user-select:none;
  24. -webkit-user-select:none;
  25. width:13px;
  26. font-size:13px;
  27. cursor:pointer;
  28. }
  29.  
  30. .playy, .pausee {color:#D9CAC1;} /* color of play & pause buttons */
  31.  
  32. .pausee {display:none;}
  33.  
  34. .sonata {
  35. margin-left:10px;
  36. color:#D9CAC1; /* color of music note symbol */
  37. }
  38.  
  39. .labeltext {
  40. position:relative;
  41. top:0px;
  42. left:1px;
  43. margin-left:0px;
  44. font-family:courier new;
  45. font-size:9px;
  46. color:#000; /* color of song title */
  47. }
  48.  
  49. </style>
  50. <body>
  51. <!-------MUSIC PLAYER BY GLENTHEMES------->
  52. <div id="glenplayer02">
  53. <div class="music-controls" onclick="songstart();">
  54. <div class="playy">►</div>
  55. <div class="pausee">❚❚</div>
  56. </div>
  57. <div class="sonata"> </div>
  58. </div><!--end music player-->
  59.  
  60. <audio id="tune" src="https://dl.dropbox.com/s/10hhbm3ge2ry7ak/WJSN%20%28Cosmic%20Girls%29%20-%20%EB%B9%84%EB%B0%80%EC%9D%B4%EC%95%BC%20%28Secret%29%20%5B129%20kbps%5D.mp3?dl=0"audio"></audio>
  61. </body>
  62.  
  63. <div class="labeltext"></div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement