Advertisement
ruesha

music player for drive crd

Apr 30th, 2022
509
1
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.58 KB | None | 1 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. display:flex;
  11. z-index:99;
  12. left: -.4em;
  13. bottom: -10.5em;
  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: 3em;
  26. font-size: 1em;
  27. cursor:pointer;
  28. }
  29.  
  30. .playy, .pausee {
  31. color:#fff;
  32. } /* color of play & pause buttons */
  33.  
  34. .playy {
  35. left:0em;
  36. position:relative;
  37. }
  38.  
  39. .pausee {
  40. display:none;
  41. font-size:.9em;
  42. }
  43.  
  44. .sonata {
  45. margin-left:1em;
  46. color:#222; /* color of music note symbol */
  47. }
  48.  
  49. .labeltext {
  50. margin-left:.8em;
  51. font-family:courier new;
  52. font-size:.9em;
  53. color:#222; /* color of song title */
  54. }
  55.  
  56. </style>
  57. <body>
  58. <!-------MUSIC PLAYER BY GLENTHEMES------->
  59. <div id="glenplayer02">
  60. <div class="music-controls" onclick="songstart();">
  61. <div class="playy">►</div> <! -- Play Symbol -->
  62. <div class="pausee">❚❚</div> <! -- Pause Symbol -->
  63. </div>
  64. <div class="sonata"> </div>
  65. <div class="labeltext"> </div> <! -- leave blank unless u want the song title to show -->
  66. </div><!--end music player-->
  67.  
  68. <audio id="tune" src=" https://dl.dropbox.com/s/7ldjvnlnzb8zskn/%EB%AF%B8%EC%97%B0%20%28MIYEON%29%20-%20%27Drive%27%20Official%20Music%20Video.mp3
  69. "audio"></audio> <! -- song url! -->
  70. </body>
  71.  
  72. <div class="labeltext"></div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement