Advertisement
dracslaura

kill bill music player

Oct 14th, 2021
6,477
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.53 KB | None | 0 0
  1.  
  2. <script src="//ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
  3.  
  4. <script src="//static.tumblr.com/2pnwama/lnLppjutr/gletanica.js"></script>
  5.  
  6. <style>
  7. /* music player skin by vitanica */
  8.  
  9. #musicplayer {
  10. position:fixed;
  11. z-index:99;
  12. bottom:0;margin-bottom:15px;
  13. left:0;margin-left:calc(25px + 15px);
  14. display:flex;
  15. -webkit-transition:all .7s ease;
  16. -moz-transition:all .7s ease;
  17. -o-transition:all .7s ease;
  18. transition:all .7s ease;
  19. }
  20.  
  21. #musicplayer > *, .play > * {align-self:center;-webkit-align-self:center}
  22.  
  23. .roundthing {
  24. width:31px;
  25. height:31px;
  26. border-radius:100%;
  27. background:#000; /* icon background */
  28. }
  29.  
  30. .roundthing img {
  31. margin:8px;
  32. width:15px;
  33. }
  34.  
  35. .midline {
  36. width:0px;
  37. height:3px;
  38. background:#000;
  39. -webkit-transition:all .4s ease;
  40. -moz-transition:all .4s ease;
  41. -o-transition:all .4s ease;
  42. transition-delay: .9s;
  43. -webkit-transition-delay: .9s;
  44. }
  45.  
  46. #musicplayer:hover .midline {
  47. width:20px;
  48. transition-delay:0s;
  49. -webkit-transition-delay:0s;
  50. }
  51.  
  52. .play {
  53. display:flex;
  54. min-width:124px;
  55. height:31px;
  56. text-align: left;
  57. padding:0px 10px;
  58. background: #eee;
  59. border-left: 3px solid #000;
  60. color:#000;
  61. opacity: 0;
  62. -webkit-transition: all .4s ease;
  63. -moz-transition: all .4s ease;
  64. -o-transition: all .4s ease;
  65. transition-delay: .4s;
  66. -webkit-transition-delay: .4s;
  67. }
  68.  
  69. .music-controls, .music-controls > * {
  70. user-select:none;
  71. -webkit-user-select:none;
  72. width:11px;
  73. font-size:11px;
  74. cursor:pointer;
  75. }
  76.  
  77. .pausee {display:none;}
  78.  
  79. .playtext {
  80. margin-left:8px;
  81. font-family:courier new;
  82. font-size:9px;
  83. }
  84.  
  85. #musicplayer:hover .play {
  86. opacity:1;
  87. transition-delay: .6s;
  88. -webkit-transition-delay: .6s;
  89. }
  90.  
  91. </style>
  92.  
  93. <body>
  94. <div id="musicplayer">
  95. <div class="roundthing">
  96. <!--more music player gifs here:-->
  97. <!--stewlate.tumblr.com/post/28218185078/music-player-gifs-->
  98. <img src="https://xyz.crd.co/assets/images/gallery08/6f775f2c.png?v=f23459a0"></div>
  99. <div class="midline"></div>
  100. <div class="play">
  101. <div class="music-controls">
  102. <div class="playy">►</div>
  103. <div class="pausee">❚❚</div>
  104. </div>
  105. <div class="playtext">kill bill</div>
  106. </div><!--play-->
  107.  
  108. <audio id="tune" src="https://dl.dropbox.com/s/p23de4jn8gmwolk/Eng%20Lyrics.mp3" type="audio"></audio>
  109. </div><!--musicplayer-->
  110.  
  111. </body>
  112.  
  113. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement