Advertisement
ukamori

gradient mp3 with text

Aug 16th, 2022
194
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.82 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. @font-face {
  9. font-family:'handy';
  10. src: url(https://dl.dropbox.com/s/kqvt2miu9r4y9ye/handy00.ttf);
  11. }  
  12.  
  13. #glenplayer02 {
  14. position:relative;#container02;
  15. bottom:0;
  16. margin-bottom:0;
  17. left:0;
  18. margin-left:0;
  19. display:flex;
  20. z-index:99;
  21. }
  22. #glenplayer02 a {
  23. text-decoration:none;
  24. }
  25.  
  26. #glenplayer02 > div {
  27. align-self:center;
  28. -webkit-align-self:center;
  29. }
  30.  
  31. .music-controls {
  32. user-select:none;
  33. -webkit-user-select:none;
  34. width:20px;
  35. font-size:18px;
  36. cursor:pointer;
  37. }
  38.  
  39. .playy, .pausee {
  40. background: linear-gradient(180deg, rgba(255,236,214,1) 0%, rgba(255,208,232,1) 50%, rgba(238,173,255,1) 100%);
  41. -webkit-background-clip: text;
  42. -webkit-text-fill-color:transparent;
  43. -webkit-text-stroke-width: 0.4px;
  44. -webkit-text-stroke-color: #ff73bb;
  45. -webkit-filter: drop-shadow(0px 0px 2px #ff9ccf);
  46. } /* color of play & pause buttons */
  47.  
  48. .pausee {
  49. display:none;
  50. }
  51.  
  52. .sonata {
  53. margin-left:3px;
  54. margin-bottom:0;
  55. color:#222; /* color of music note symbol */
  56. }
  57.  
  58. .labeltext {
  59. margin-bottom:0;
  60. margin-left:0px;
  61. font-size:0.8em;
  62. color:#222; /* color of song title */
  63. font-family:'handy';    
  64. }
  65.  
  66. </style>
  67. <body>
  68. <!-------MUSIC PLAYER BY GLENTHEMES------->
  69. <div id="glenplayer02">
  70. <div class="music-controls" onclick="songstart();">
  71. <div class="playy">►</div>
  72. <div class="pausee">❚❚</div>
  73. </div>
  74. <div class="sonata"></div>
  75. <div class="labeltext">what dreams are made of</div>
  76. </div><!--end music player-->
  77.  
  78. <audio id="tune" src="https://cdn.discordapp.com/attachments/916511538410569829/1007126292493254666/yt1s.com_-_COLORING.mp3"></audio>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement