valentinegirl

speaker music player

Apr 21st, 2022 (edited)
4,089
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.57 KB | None | 0 0
  1. <!----- music player used in min crd co and kahei crd co made by giamgri but credit isnt that important, fill in your own hex codes and music link (works for dropbox) ------->
  2.  
  3. <script src="//ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
  4.  
  5. <!-------MUSIC PLAYER BY GLENTHEMES------->
  6. <script src="//static.tumblr.com/gtjt4bo/QRmphdsdv/glenplayer02.js"></script>
  7.  
  8. <head>
  9. <script src="https://kit.fontawesome.com/610c820504.js" crossorigin="anonymous"></script>
  10.  
  11. <style type="text/css">
  12. /*-------MUSIC PLAYER BY GLENTHEMES-------*/
  13. #glenplayer02 {
  14. position:relative;
  15.  
  16. #container07;
  17. bottom:0;
  18. margin-bottom:10px;
  19. left:-8.5px;
  20. margin-left:10px;
  21. display:flex;
  22. z-index:99;
  23. }
  24. #glenplayer02 a {
  25. text-decoration:none;
  26. }
  27.  
  28. #glenplayer02 > div {
  29. align-self:center;
  30. -webkit-align-self:center;
  31. }
  32.  
  33. .music-controls {
  34. user-select:none;
  35. -webkit-user-select:none;
  36. width:22px;
  37. font-size:16px;
  38. cursor:pointer;
  39. }
  40.  
  41. .playy, .pausee {
  42. -webkit-background-clip: text;
  43. -webkit-text-fill-color: #color ;
  44. -webkit-text-stroke-width: 1px;
  45. -webkit-text-stroke-color: #color;
  46. font-size: 22px;
  47. }
  48.  
  49. .pausee {
  50. display:none;
  51. }
  52.  
  53. </style>
  54. <body>
  55. <!-------MUSIC PLAYER BY GLENTHEMES------->
  56. <div id="glenplayer02">
  57.  
  58. <div class="music-controls" onclick="songstart();">
  59. <div class="playy" style="display: block;"><span><i class="fa-solid fa-volume-low" aria-hidden="true"></i></span></div>
  60. <div class="pausee" style="display: none;"><span><i class="fa-solid fa-volume-high" aria-hidden="true"></i></span></div></div>
  61. </div>
  62.  
  63. <audio id="tune" src=""></audio>
  64. </body>
Add Comment
Please, Sign In to add comment