Advertisement
izuemis

coracrd music player

Oct 9th, 2022
556
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.56 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. position: relative;
  10. left: 2.25em;
  11. display:flex;
  12. z-index:99;
  13. }
  14. #glenplayer02 a {text-decoration:none;}
  15.  
  16. #glenplayer02 > div {
  17. align-self:center;
  18. -webkit-align-self:center;
  19. }
  20.  
  21. .music-controls {
  22. user-select:none;
  23. -webkit-user-select:none;
  24. font-size:1em;
  25. cursor:pointer;
  26. }
  27.  
  28. .playy, .pausee {
  29. color:#000;
  30. } /* color of play & pause buttons */
  31.  
  32. .pausee {
  33. left: 2.375em;
  34. display:none;
  35. font-size:.9em;
  36. }
  37.  
  38. .sonata {
  39. margin-left:1em;
  40. color:#222; /* color of music note symbol */
  41. }
  42.  
  43. .labeltext {
  44. margin-left:.8em;
  45. font-family:courier new;
  46. font-size:.9em;
  47. color:#222; /* color of song title */
  48. }
  49.  
  50. </style>
  51. <body>
  52. <!-------MUSIC PLAYER BY GLENTHEMES------->
  53. <div id="glenplayer02">
  54. <div class="music-controls" onclick="songstart();">
  55. <div class="playy">►</div> <! -- Play Symbol -->
  56. <div class="pausee">❚❚</div> <! -- Pause Symbol -->
  57. </div>
  58. <div class="sonata"> </div>
  59. <div class="labeltext"> </div> <! -- leave blank unless u want the song title to show -->
  60. </div><!--end music player-->
  61.  
  62. <audio id="tune" src="https://cdn.discordapp.com/attachments/1011654612551487558/1028535519346442260/25-ji_Nightcord_de_x_MEIKO_-_ID_Smile_Color_Coded_Kan_Rom_Eng_Lyrics_Project_Sekai.mp3"audio"></audio> <! -- song url! -->
  63. </body>
  64.  
  65. <div class="labeltext"> </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement