Advertisement
ruesha

gradient music player

Aug 28th, 2022
424
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.83 KB | None | 0 0
  1. <!--- CHANGE SONG COLORS ETC --->
  2. <script src="//ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
  3.  
  4. <!-------MUSIC PLAYER BY GLENTHEMES------->
  5. <script src="//static.tumblr.com/gtjt4bo/QRmphdsdv/glenplayer02.js"></script>
  6.  
  7. <style type="text/css">
  8. /*-------MUSIC PLAYER BY GLENTHEMES-------*/
  9. #glenplayer02 {
  10. position:relative;
  11. bottom:0;
  12. margin-bottom:0;
  13. left:0;
  14. margin-left:10px;
  15. display:flex;
  16. z-index:99;
  17. }
  18.  
  19. #glenplayer02 a {
  20. text-decoration:none;
  21. }
  22.  
  23. #glenplayer02 > div {
  24. align-self:center;
  25. -webkit-align-self:center;
  26. }
  27.  
  28. .music-controls {
  29. user-select:none;
  30. -webkit-user-select:none;
  31. width:25px;
  32. font-size:20px;
  33. cursor:pointer;
  34. }
  35.  
  36. .playy, .pausee {
  37. background: radial-gradient(circle, rgba(248, 199, 255,1) 0%, rgba(253, 242, 255, 1) 50%, rgba(248, 199, 255,1) 100%);
  38. -webkit-background-clip: text;
  39. -webkit-text-fill-color:transparent;
  40. -webkit-text-stroke-width: 0.4px;
  41. -webkit-text-stroke-color: #808080;
  42. -webkit-filter: drop-shadow(0px 0px 1px #F8C7FF);
  43. } /* color of play & pause buttons */
  44.  
  45. .pausee {
  46. display:none;
  47. }
  48.  
  49. .sonata {
  50. margin-left:5px;
  51. color:#222; /* color of music note symbol */
  52. }
  53.  
  54. .labeltext {
  55. margin-left:0px;
  56. font-family:courier new;
  57. font-size:9px;
  58. color:#222; /* color of song title */
  59. }
  60.  
  61. </style>
  62. <body>
  63. <!-------MUSIC PLAYER BY GLENTHEMES------->
  64. <div id="glenplayer02">
  65. <div class="music-controls" onclick="songstart();">
  66. <div class="playy">►</div>
  67. <div class="pausee">❚❚</div>
  68. </div>
  69. <div class="sonata"> </div>
  70. <div class="labeltext"><img src="http://i12.photobucket.com/albums/a213/superkate_2468/favicon-2ico.gif" ></div>
  71. </div><!--end music player-->
  72.  
  73. <audio id="tune" src="https://dl.dropbox.com/s/3c5asjtiaixxveu/Cigarette%20Daydreams-%20Cage%20The%20Elephant%20%28Lyrics%29%20%7CYou%20were%20only%20seventeen%7CTikTok%7C.mp3?dl=0"></audio>
  74. </body>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement