Advertisement
dianakko

music player pegadito

Sep 7th, 2021
346
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.49 KB | None | 0 0
  1. <head>
  2. <script src="//ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
  3. <!-------MUSIC PLAYER BY GLENTHEMES------->
  4. <script src="//static.tumblr.com/gtjt4bo/QRmphdsdv/glenplayer02.js"></script>
  5. </head>
  6.  
  7. <style>
  8. /*-------MUSIC PLAYER BY GLENTHEMES-------*/
  9. #glenplayer02 {
  10. position: relative;
  11. bottom: 8;
  12. margin-bottom: 20px;
  13. left: 0;
  14. margin-left: 10px;
  15. display: flex;
  16. z-index: 1;
  17. }
  18. #glenplayer02 a {text-decoration:none;}
  19.  
  20. #glenplayer02 > div {
  21. align-self:center;
  22. -webkit-align-self:center;
  23. }
  24.  
  25. .music-controls {
  26. user-select:none;
  27. -webkit-user-select:none;
  28. width:13px;
  29. font-size:13px;
  30. cursor:pointer;
  31. }
  32.  
  33. .playy, .pausee {color:#FFA8C8;} /* color of play & pause buttons */
  34.  
  35. .pausee {display:none;}
  36.  
  37. .sonata {
  38. margin-left:10px;
  39. color:#FFA8C8; /* color of music note symbol */
  40. }
  41.  
  42. .labeltext {
  43. margin-left:8px;
  44. font-family:courier new;
  45. font-size:9px;
  46. color:#FFA8C8; /* color of song title */
  47. }
  48. </style>
  49.  
  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="labeltext"></div>
  58. </div><!--end music player-->
  59.  
  60. <audio id="tune" src="https://dl.dropbox.com/s/txa9dx9eougwciu/Ojitos%20de%20Miel%20-%20%28Video%20Con%20Letras%29%20-%20T3R%20Elemento%20-%20DEL%20Records%202020.mp3" type="audio"></audio>
  61. </body>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement