Advertisement
ANDROMETAS

marquee music player

Jul 10th, 2021
301
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.48 KB | None | 0 0
  1. <script src="//ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
  2.  
  3. <!-------MUSIC PLAYER BY GLENTHEMES------->
  4. <script src="//static.tumblr.com/gtjt4bo/QRmphdsdv/glenplayer02.js"></script>
  5. <style>
  6. /*-------MUSIC PLAYER BY GLENTHEMES-------*/
  7. #glenplayer02 {
  8. position:relative;
  9. display:flex;
  10. background: white;
  11. border: 2px solid black;
  12. }
  13. #glenplayer02 a {text-decoration:none;}
  14.  
  15. #glenplayer02 > div {
  16. align-self:right;
  17. -webkit-align-self:right;
  18. }
  19.  
  20. .music-controls {
  21. user-select:none;
  22. -webkit-user-select:none;
  23. width:22px;
  24. font-size:22px;
  25. cursor:pointer;
  26. }
  27.  
  28. .playy, .pausee {-webkit-text-stroke: 1px black;
  29. color: white;} /* color of play & pause buttons */
  30.  
  31. .pausee {display:none;}
  32.  
  33. .sonata {
  34. margin-left:8px;
  35. color: white;text-shadow: 0 1px black, 0 -1px black, 1px 0 black, -1px 0 black; /* color of music note symbol */
  36. }
  37.  
  38. .labeltext {
  39. margin-left:5px;
  40. font-family:arial;
  41. font-weight:bold;
  42. font-align:left;
  43. font-size:22px;
  44. width: auto;
  45. color:#000; /* color of song title */
  46. }
  47. </style>
  48. <!-------MUSIC PLAYER BY GLENTHEMES------->
  49. <div id="glenplayer02">
  50. <div class="music-controls" onclick="songstart();">
  51. <div class="playy">►</div>
  52. <div class="pausee">❚❚</div>
  53. </div>
  54. <div class="labeltext">
  55. <marquee behavior="scroll" direction="left">nintendo playstation</marquee>
  56. </div>
  57. </div><!--end music player-->
  58.  
  59. <audio id="tune" src="https://dl.dropbox.com/s/gq80qelu575k60y/House%20of%20Fun%20%282000%20Remastered%20Version%29.mp3"></audio>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement