Advertisement
Guest User

Untitled

a guest
Jun 20th, 2021
2,628
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.31 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:relative;
  10. display:flex;
  11. z-index:99;
  12. }
  13. #glenplayer02 a {text-decoration:none;}
  14.  
  15. #glenplayer02 > div {
  16. align-self:center;
  17. -webkit-align-self:center;
  18. }
  19.  
  20. .music-controls {
  21. user-select:none;
  22. -webkit-user-select:none;
  23. width:19px;
  24. font-size:19px;
  25. cursor:pointer;
  26. }
  27.  
  28. .playy, .pausee {color:#fff;} /* color of play & pause buttons */
  29.  
  30. .pausee {display:none;}
  31.  
  32. .sonata {
  33. margin-left:10px;
  34. color:#fff; /* color of music note symbol */
  35. }
  36.  
  37. .labeltext {
  38. margin-left:8px;
  39. font-family:times new roman;
  40. font-size:13px;
  41. color:#fff; /* color of song title */
  42. }
  43.  
  44. </style>
  45. <body>
  46. <!-------MUSIC PLAYER BY GLENTHEMES------->
  47. <div id="glenplayer02">
  48. <div class="music-controls" onclick="songstart();">
  49. <div class="playy">►</div>
  50. <div class="pausee">❚❚</div>
  51. </div>
  52. <div class="sonata"> </div>
  53. <div class="labeltext">song title here</div>
  54. </div><!--end music player-->
  55.  
  56. <audio id="tune" src="https://dl.dropbox.com/s/yiolas13ypjpblt/search.mp3"audio"></audio>
  57. </body>
  58.  
  59. <div class="labeltext"> </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement