Advertisement
GIFCITY

glenthemes player #1

Jan 15th, 2024 (edited)
338
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.19 KB | None | 0 0
  1. <script src="//ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
  2. <!-------MUSIC PLAYER BY GLENTHEMES------->
  3. <script src="//static.tumblr.com/gtjt4bo/QRmphdsdv/glenplayer02.js"></script>
  4.  
  5. <style type="text/css">
  6. /*-------MUSIC PLAYER BY GLENTHEMES-------*/
  7. #glenplayer02 {
  8. display:flex;
  9. margin:auto;
  10. }
  11.  
  12. #glenplayer02 a {text-decoration:none;}
  13.  
  14. #glenplayer02 > div {
  15. align-self:center;
  16. -webkit-align-self:center;
  17. }
  18.  
  19. .music-controls {
  20. user-select:none;
  21. -webkit-user-select:none;
  22. width:13px;
  23. font-size:13px;
  24. cursor:pointer;
  25. }
  26.  
  27. .playy, .pausee {color:#000;} /* color of play & pause buttons */
  28.  
  29. .pausee {display:none;}
  30.  
  31. .sonata {
  32. margin-left:10px;
  33. color:#222; /* color of music note symbol */
  34. }
  35.  
  36. .labeltext {
  37. margin-left:8px;
  38. font-family:courier new;
  39. font-size:9px;
  40. color:#222; /* color of song title */
  41. }
  42.  
  43. </style>
  44. <body>
  45. <!-------MUSIC PLAYER BY GLENTHEMES------->
  46. <div id="glenplayer02">
  47. <div class="music-controls" onclick="songstart();">
  48. <div class="playy">►</div>
  49. <div class="pausee">❚❚</div>
  50. </div>
  51. <div class="sonata"> </div>
  52. <div class="labeltext"> song name </div>
  53. </div><!--end music player-->
  54.  
  55. <audio id="tune" src="URL"audio"></audio>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement