Advertisement
fterlyfe

glenthemes music player 06

Dec 3rd, 2021 (edited)
850
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.13 KB | None | 0 0
  1. <script src="//ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
  2. <link href="//fonts.googleapis.com/css?family=Work+Sans" rel="stylesheet">
  3.  
  4. <script src="https://static.tumblr.com/2pnwama/DLppehqvd/feathericons.js"></script>
  5.  
  6. <!-------MUSIC PLAYER BY GLENTHEMES------->
  7. <script src="//glenthemes.github.io/-music-/glenplayer06.js"></script>
  8.  
  9. <style>
  10. /*-------MUSIC PLAYER BY GLENTHEMES-------*/
  11. :root {
  12. --Music-Player-Vinyl:#000;
  13. --Vinyl-Icon-Size:17px;
  14. --Vinyl-Spin-Speed:3.5s;
  15. --Music-Controls:#000;
  16. --Music-Controls-Size:12px;
  17. --Music-Title-Font-Size:11px;
  18. --Music-Title-Color:#000;
  19. }
  20. .glenjams-06 {
  21. display:none;
  22. position:fixed;
  23. bottom:0;margin-bottom:30px;
  24. left:0;margin-left:30px;
  25. z-index:99;
  26. }
  27.  
  28. .pasta {
  29. display:flex;
  30. align-items:center;
  31. }
  32.  
  33. .vinyl-spin {
  34. animation:recordspin var(--Vinyl-Spin-Speed) linear infinite;
  35. -webkit-animation:recordspin var(--Vinyl-Spin-Speed) linear infinite;
  36. -moz-animation:recordspin var(--Vinyl-Spin-Speed) linear infinite;
  37. -o-animation:recordspin var(--Vinyl-Spin-Speed) linear infinite;
  38. }
  39.  
  40. .vinyl-pause {
  41. animation-play-state:paused;
  42. -webkit-animation-play-state:paused;
  43. -moz-animation-play-state:paused;
  44. -o-animation-play-state:paused;
  45. }
  46.  
  47. @-webkit-keyframes recordspin {
  48. from {
  49. -webkit-transform:rotate(0deg);
  50. -o-transform:rotate(0deg);
  51. transform:rotate(0deg);
  52. }
  53. to {
  54. -webkit-transform:rotate(360deg);
  55. -o-transform:rotate(360deg);
  56. transform:rotate(360deg);
  57. }
  58. }
  59.  
  60. @keyframes recordspin {
  61. from {
  62. -ms-transform:rotate(0deg);
  63. -moz-transform:rotate(0deg);
  64. -webkit-transform:rotate(0deg);
  65. -o-transform:rotate(0deg);
  66. transform:rotate(0deg);
  67. }
  68. to {
  69. -ms-transform:rotate(360deg);
  70. -moz-transform:rotate(360deg);
  71. -webkit-transform:rotate(360deg);
  72. -o-transform:rotate(360deg);
  73. transform:rotate(360deg);
  74. }
  75. }
  76.  
  77. .vinyl, .vinyl svg {
  78. width:var(--Vinyl-Icon-Size);
  79. height:var(--Vinyl-Icon-Size);
  80. }
  81.  
  82. .music-controls {
  83. margin-left:10px;
  84. width:var(--Music-Controls-Size);
  85. overflow:hidden;
  86. cursor:pointer;
  87. }
  88.  
  89. .music-controls svg {
  90. width:var(--Music-Controls-Size);
  91. height:var(--Music-Controls-Size);
  92. color:var(--Music-Controls);
  93. stroke-width:1.5px;
  94. }
  95.  
  96. .pausee {display:none;}
  97.  
  98. .beff {display:none;}
  99. .aff {display:block;}
  100.  
  101. .music-title {
  102. margin-left:8px;
  103. font-family:work sans;
  104. font-size:var(--Music-Title-Font-Size);
  105. color:var(--Music-Title-Color);
  106. }
  107. </style>
  108.  
  109. <!-------MUSIC PLAYER BY GLENTHEMES------->
  110. <div class="glenjams-06">
  111. <div class="pasta">
  112. <div class="vinyl"></div>
  113. <div class="music-controls">
  114. <div class="playy"><i data-feather="play"></i></div>
  115. <div class="pausee"><i data-feather="pause"></i></div>
  116. </div>
  117. <div class="music-title">MAMI MAMI ZONE</div>
  118.  
  119. <audio id="audio" src="https://dl.dropbox.com/s/su8mergyk9lvhmb/mami-mami-zone.mp3" type="audio"></audio>
  120. </div><!--pasta-->
  121. </div><!--glenjams-06-->
  122. <!----end music player---->
  123.  
  124. <script>feather.replace()</script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement