Advertisement
izuemis

cr angeidiarys #4 music player

Oct 17th, 2022
457
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.43 KB | None | 0 0
  1. <script src="//ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
  2. <link href="https://fonts.googleapis.com/css?family=ABeeZee|Karla" rel="stylesheet">
  3. <link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
  4.  
  5. <!-------MUSIC PLAYER BY GLENTHEMES------->
  6. <script src="//glenthemes.github.io/-music-/glenplayer07.js"></script>
  7.  
  8. <style>
  9.  
  10. @font-face {
  11. font-family: "spacerangerlasital";
  12. src:url(https://dl.dropbox.com/s/qj5rw9r6sf4usau/spacerangerlasital.ttf);
  13. }
  14.  
  15. /*-------MUSIC PLAYER BY GLENTHEMES-------*/
  16. :root {
  17. --Circle-Size:55px;
  18. --Progress-Border-Size:2px;
  19. --Progress-Empty:#00000000;
  20. --Progress-Fill:#00000000;
  21. --Player-Background:#FFFFFF;
  22. --Play-Pause-Buttons-Size:25px;
  23. --Play-Pause-Buttons-Color:#ea4e8e;
  24. --Player-Text-Margin:16px;
  25.  
  26. --Song-Name-Font-Size:10px;
  27. --Song-Name-Color:#111;
  28.  
  29. --Artist-Name-Font-Size:11px;
  30. --Artist-Name-Color:#888;
  31. }
  32.  
  33. #glenplayer07 {
  34. position: relative;
  35. }
  36.  
  37. .flamingo {
  38. display:flex;
  39. align-items:center;
  40. }
  41.  
  42. .circleofdeath {
  43. width:var(--Circle-Size);
  44. height:var(--Circle-Size);
  45. border-radius:100%;
  46. overflow:hidden;
  47. }
  48.  
  49. .tinfoil {
  50. width:var(--Circle-Size);
  51. height:var(--Circle-Size);
  52. background:var(--Progress-Empty);
  53. border-radius:100%;
  54. }
  55.  
  56. .oven {
  57. background:var(--Progress-Fill);
  58. }
  59.  
  60. .oliveoil {
  61. width:100%;
  62. height:100%;
  63. }
  64.  
  65. .crust {
  66. position:absolute;
  67. top:0;
  68. display:flex;
  69. align-items:center;
  70. justify-content:center;
  71. width:var(--Circle-Size);
  72. height:var(--Circle-Size);
  73. }
  74.  
  75. .cherry {
  76. display:flex;
  77. align-items:center;
  78. justify-content:center;
  79. width:calc(var(--Circle-Size) - (var(--Progress-Border-Size) * 2));
  80. height:calc(var(--Circle-Size) - (var(--Progress-Border-Size) * 2));
  81. background:var(--Player-Background);
  82. border-radius:100%;
  83. border: 2px solid #ea4e8e;
  84. cursor:pointer;
  85. z-index:1;
  86. }
  87.  
  88. .music-controls {display:flex;align-items:center}
  89.  
  90. .music-controls .material-icons {
  91. font-size:var(--Play-Pause-Buttons-Size);
  92. color:var(--Play-Pause-Buttons-Color);
  93. text-shadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000, 0 0;
  94. }
  95.  
  96. .pausee {display:none;}
  97.  
  98. .beff {display:none;}
  99. .aff {display:block;}
  100.  
  101. .music-info {
  102. margin-left:5px;
  103. line-height:0.75em;
  104. }
  105.  
  106. .song-name {
  107. font-family:"spacerangerlasital";
  108. font-size:1em;
  109. text-transform:uppercase;
  110. letter-spacing:1.5px;
  111. color:#ea4e8e;
  112. text-shadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000, 0 0;
  113. }
  114.  
  115. .artist-name {
  116. margin-top:3px;
  117. text-align: left;
  118. font-family:karla;
  119. font-size:0.875em;
  120. letter-spacing:0.3px;
  121. color:#fff;
  122. text-shadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000, 0 0;
  123. }
  124.  
  125. </style>
  126. <body>
  127. <!-------MUSIC PLAYER BY GLENTHEMES------->
  128. <div id="glenplayer07">
  129. <div class="flamingo">
  130. <div class="circleofdeath">
  131. <div class="tinfoil">
  132. <div class="oliveoil"></div>
  133. </div>
  134. <div class="crust">
  135. <div class="cherry">
  136. <div class="music-controls">
  137. <i class="material-icons playy">play_arrow</i>
  138. <i class="material-icons pausee">pause</i>
  139. </div>
  140. </div><!--cherry-->
  141. </div><!--crust-->
  142. </div><!--circleofdeath-->
  143.  
  144. <div class="music-info">
  145. <div class="song-name">IDSMILE</div>
  146. <div class="artist-name">NIGHTCORD</div>
  147. </div><!--music-info-->
  148. </div><!--flamingo-->
  149. </div><!--glenplayer07-->
  150.  
  151. <audio id="audio" 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" type="audio"></audio>
  152. <!----end music player---->
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement