Advertisement
fterlyfe

harenchi music player by lovermonth

May 6th, 2022
1,888
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.87 KB | None | 0 0
  1. <script src="//ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
  2.  
  3. <!------- HARENCHI 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://dl.dropbox.com/s/miph32gnut3atwk/bmstamp.TTF);
  11. }
  12.  
  13. /*-------MUSIC PLAYER BY GLENTHEMES-------*/
  14. #glenplayer02 {
  15. position:fixed;
  16. bottom:0;margin-bottom:40px;
  17. left:0;margin-left:20px;
  18. display:flex;
  19. z-index:99;
  20. }
  21. #glenplayer02 a {text-decoration:none;}
  22.  
  23. #glenplayer02 > div {
  24. align-self:center;
  25. -webkit-align-self:center;
  26. }
  27.  
  28. .music-controls {
  29. user-select:none;
  30. -webkit-user-select:none;
  31. width:20px;
  32. color: #7232B3;
  33. font-family: emoji;
  34. font-size: 20px;
  35. cursor:pointer;
  36. }
  37.  
  38. .playy, .pausee {
  39. color: #7232B3;
  40. animation-name: floating;
  41. animation-duration: 3s;
  42. animation-iteration-count: infinite;
  43. animation-timing-function: ease-in-out;
  44. }
  45.  
  46. @keyframes floating {
  47. 0% { transform: translate(0, 0px); }
  48. 50% { transform: translate(0, 7px); }
  49. 100% { transform: translate(0, -0px); }
  50. } /* color of play & pause buttons */
  51.  
  52. .pausee {display:none;}
  53.  
  54. .sonata {
  55. margin-left:10px;
  56. width:250px;
  57. font-size:20px;
  58. font-family: pokemonred;
  59. color:#7232B3; /* color of music note symbol */
  60. }
  61.  
  62. </style>
  63.  
  64. <!-------MUSIC PLAYER BY GLENTHEMES------->
  65. <div id="glenplayer02">
  66. <div class="music-controls" onclick="songstart();">
  67. <div class="playy">T</div>
  68. <div class="pausee">Z</div>
  69. </div>
  70. <div class="sonata"><marquee> </marquee></div>
  71. <div class="labeltext"></div>
  72. </div><!--end music player-->
  73.  
  74. <audio id="tune" src="https://dl.dropbox.com/s/09w62r3zof9e4ap/CHANMINA%20%28%E3%81%A1%E3%82%83%E3%82%93%E3%81%BF%E3%81%AA%29%20-%20%E3%83%8F%E3%83%AC%E3%83%B3%E3%83%81%20%28HARENCHI%29%20%28JPN%2C%20ROM%2C%20ENG%29%20Lyrics.mp3" type="audio"></audio>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement