Advertisement
fterlyfe

GEMWORLD music player lovermonth

Dec 3rd, 2021 (edited)
1,835
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.97 KB | None | 0 0
  1. <script src="//ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
  2.  
  3. <!-------GEMWORLD player by lovermonth, modified from glenthemes player 02 ------->
  4. <script src="//static.tumblr.com/gtjt4bo/QRmphdsdv/glenplayer02.js"></script>
  5.  
  6. <style type="text/css">
  7.  
  8. @font-face {
  9. font-family: emoji;
  10. src: url(https://cinni.net/directory/EmojiFont.ttf);
  11. }
  12.  
  13. @font-face {
  14. font-family: pokemonred;
  15. src: url(https://dl.dropbox.com/s/cwniaatr9tgsrvv/pokemonred.ttf);
  16. }
  17.  
  18. /*-------MUSIC PLAYER BY GLENTHEMES-------*/
  19. #glenplayer02 {
  20. position:fixed;
  21. bottom:0;margin-bottom:20px;
  22. left:0;margin-left:20px;
  23. display:flex;
  24. z-index:99;
  25. }
  26. #glenplayer02 a {text-decoration:none;}
  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:17px;
  37. color: #FF0F9F;
  38. font-family: emoji;
  39. font-size:30px;
  40. cursor:pointer;
  41. }
  42.  
  43. .playy, .pausee {
  44. color: #FF0F9F;
  45. animation-name: floating;
  46. animation-duration: 3s;
  47. animation-iteration-count: infinite;
  48. animation-timing-function: ease-in-out;
  49. }
  50.  
  51. @keyframes floating {
  52. 0% { transform: translate(0, 0px); }
  53. 50% { transform: translate(0, 7px); }
  54. 100% { transform: translate(0, -0px); }
  55. } /* color of play & pause buttons */
  56.  
  57. .pausee {display:none;}
  58.  
  59. .sonata {
  60. margin-left:10px;
  61. width:250px;
  62. font-size:13px;
  63. font-family: pokemonred;
  64. color:#222; /* color of music note symbol */
  65. }
  66.  
  67. .labeltext {
  68. margin-left:8px;
  69. font-family: pokemonred;
  70. font-size:7px;
  71. color:#222; /* color of song title */
  72. }
  73.  
  74. </style>
  75.  
  76. <!-------MUSIC PLAYER BY GLENTHEMES------->
  77. <div id="glenplayer02">
  78. <div class="music-controls" onclick="songstart();">
  79. <div class="playy">O</div>
  80. <div class="pausee">s</div>
  81. </div>
  82. <div class="sonata"><marquee> NOW PLAYING... MAMI MAMI ZONE BY REDALiCE </marquee></div>
  83. <div class="labeltext"></div>
  84. </div><!--end music player-->
  85.  
  86. <audio id="tune" src="https://dl.dropbox.com/s/su8mergyk9lvhmb/mami-mami-zone.mp3" type="audio"></audio>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement