Advertisement
izuemis

cr lasita on codepen | music player

Mar 12th, 2023
314
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.49 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. #glenplayer02 {
  9. display:flex;
  10. z-index:99;
  11. text-shadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000, 0 0;
  12. }
  13. #glenplayer02 a {text-decoration:none;}
  14.  
  15. #glenplayer02 > div {
  16. align-self:center;
  17. -webkit-align-self:center;
  18. }
  19.  
  20. .music-controls {
  21. user-select:none;
  22. -webkit-user-select:none;
  23. width:13px;
  24. font-size:13px;
  25. cursor:pointer;
  26. }
  27.  
  28. .playy, .pausee {color:#fff;} /* color of play & pause buttons */
  29.  
  30. .pausee {display:none;}
  31.  
  32. .sonata {
  33. margin-left:10px;
  34. color:#000; /* color of music note symbol */
  35. }
  36.  
  37. .labeltext {
  38. margin-left:1px;
  39. font-family:courier new;
  40. font-size:9px;
  41. color:#fff; /* color of song title */
  42. }
  43.  
  44. </style>
  45. <body>
  46. <!-------MUSIC PLAYER BY GLENTHEMES------->
  47. <div id="glenplayer02">
  48. <div class="music-controls" onclick="songstart();">
  49. <div class="playy">►</div>
  50. <div class="pausee">❚❚</div>
  51. </div>
  52. <div class="sonata"> </div>
  53. </div><!--end music player-->
  54.  
  55. <audio id="tune" src="https://dl.dropbox.com/s/s3mf24vc2gv6y92/%5BEXID%28%EC%9D%B4%EC%97%91%EC%8A%A4%EC%95%84%EC%9D%B4%EB%94%94%29%5D%20%EB%82%B4%EC%9D%BC%ED%95%B4%28LADY%29%20%EB%AE%A4%EC%A7%81%20%EB%B9%84%EB%94%94%EC%98%A4%20%28Official%20Music%20Video%29.mp3?"audio"></audio>
  56. </body>
  57.  
  58. <div class="labeltext"> </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement