Advertisement
b0rn-to-be-wild

Music player tab instalation (basic)

Mar 30th, 2017
190
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.08 KB | None | 0 0
  1. /* MUSIC PLAYER TAB by borntobewildcodes (basic). Feel free to change its margins, borders, colors, fonts and other values */
  2.  
  3. /*-- CSS (paste under <style type="text/css">) --*/
  4.  
  5. /* Music player box */
  6.  
  7. #music{
  8. position:fixed;
  9. margin-top:0px;
  10. margin-left:10px;
  11. background:#fff;
  12. width:130px;
  13. height:30px;
  14. overflow:hidden
  15. }
  16.  
  17. #music:hover{
  18. height:100px;
  19. }
  20.  
  21. /* Music player icon box */
  22.  
  23. .musicplayericon{
  24. position:absolute;
  25. margin-top:0px;
  26. margin-left:0px;
  27. background:#fff;
  28. width:30px;
  29. height:20px;
  30. border:1px solid #eee;
  31. padding-top:10px;
  32. z-index:100;
  33. }
  34.  
  35. /* Music player box */
  36.  
  37. .musicplayer{
  38. position:absolute;
  39. margin-top:0px;
  40. margin-left:10px;
  41. background:#fff;
  42. width:120px;
  43. height:20px;
  44. border:1px solid #eee;
  45. padding-top:10px;
  46. overflow:hidden;
  47. z-index:10;
  48. }
  49.  
  50. /* Playlist box */
  51.  
  52. .playlist{
  53. position:absolute;
  54. margin-top:32px;
  55. margin-left:0px;
  56. background:#fff;
  57. width:120px;
  58. height:auto;
  59. border-left:1px solid #eee;
  60. border-right:1px solid #eee;
  61. border-bottom:1px solid #eee;
  62. font-size:9px;
  63. font-family:Verdana;
  64. text-align:left;
  65. padding:5px;
  66. overflow:hidden;
  67. z-index:10;
  68. }
  69.  
  70.  
  71. <!-- HTML (paste under <body>) -->
  72.  
  73. <!-- Music player tab starts -->
  74. <div id="music">
  75.  
  76. <!-- Your can change the music player icon here -->
  77. <div class="musicplayericon"><img src="http://media.tumblr.com/tumblr_m7w2izzY0j1r6o8v2.gif"></div>
  78.  
  79. <div class="musicplayer">
  80. <!-- Your music player code goes here -->
  81. <embed src="http://www.sheepproductions.com/billy/billy.swf?autoplay=false&f0=http://www.sheepproductions.com/mfc/done.mp3&t0=Done&f1=http://www.sheepproductions.com/mfc/justified.mp3&t1=Justified&f2=http://www.sheepproductions.com/mfc/shesaid.mp3&t2=She Said&total=3" quality="high" wmode="transparent" width="200" height="10" name="billy" align="middle" type="application/x-shockwave-flash" />
  82. </div>
  83. <!--End musicplayer-->
  84.  
  85. <div class="playlist">
  86. <!-- Track titles go here -->
  87.  
  88. 1. Done <br>
  89.  
  90. 2. Justified <br>
  91.  
  92. 3. She said <br>
  93.  
  94. 4. Title here <br>
  95.  
  96. 5. Title here <br>
  97.  
  98. </div>
  99. <!--End playlist-->
  100.  
  101. </div>
  102. <!-- Music player tab ends -->
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement