Advertisement
dracslaura

music player with shadow

May 31st, 2021
574
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.65 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.  
  6. <style type="text/css">
  7. /*-------MUSIC PLAYER BY GLENTHEMES-------*/
  8. #glenplayer02 {
  9. position:fixed;
  10. bottom:0;margin-bottom:20px;
  11. left:0;margin-left:20px;
  12. display:flex;
  13. z-index:99;
  14. text-shadow: -1px 0 #F56EA9, 0 1px #F56EA9, 1px 0 #F56EA9, 0 -1px #F56EA9, 0 0; /* change the color of the border here! */
  15. }
  16. #glenplayer02 a {text-decoration:none;}
  17.  
  18. #glenplayer02 > div {
  19. align-self:center;
  20. -webkit-align-self:center;
  21. }
  22.  
  23. .music-controls {
  24. user-select:none;
  25. -webkit-user-select:none;
  26. width:13px;
  27. font-size:16px;
  28. cursor:pointer;
  29. }
  30.  
  31. .playy, .pausee {color:#fff;} /* color of play & pause buttons */
  32.  
  33. .pausee {display:none;}
  34.  
  35. .sonata {
  36. margin-left:10px;
  37. color:#000; /* color of music note symbol */
  38. }
  39.  
  40. .labeltext {
  41. margin-left:8px;
  42. font-family:courier new;
  43. font-size:9px;
  44. color:#fff; /* color of song title */
  45. }
  46.  
  47. </style>
  48. <body>
  49. <!-------MUSIC PLAYER BY GLENTHEMES------->
  50. <div id="glenplayer02">
  51. <div class="music-controls" onclick="songstart();">
  52. <div class="playy">►</div> <!---this will be the play button symbol--->
  53. <div class="pausee">♬</div> <!---this will be the pause button symbol--->
  54. </div>
  55. <div class="sonata"> </div>
  56. <div class="labeltext"></div>
  57. </div><!--end music player-->
  58.  
  59. <audio id="tune" src="https://dl.dropbox.com/s/mi6yoys4eql50ay/yt1s.com%20-%20Fright%20Song%20Official%20Music%20Video%20%20Monster%20High%20%281%29.mp3"audio></audio> <!---insert your dropbox link here!--->
  60.  
  61. <div class="labeltext"></div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement