Advertisement
marvelsource

Music Container

Jul 12th, 2014
241
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.70 KB | None | 0 0
  1. *** PLACE THIS IN WHO I'D LIKE TO MEET: ***
  2.  
  3. <style>
  4. #editthis{
  5. /* EDIT THIS STUFF TO POSITION YOUR MUSIC PLAYER */
  6. position:fixed;
  7. top:20px; /* YOU CAN CHANGE THIS TO BOTTOM */
  8. left:20px; /* YOU CAN CHANGE THIS TO RIGHT */
  9. z-index:99;}
  10.  
  11. /* I DON'T RECOMMEND TOUCHING THIS STUFF */
  12. #music1{
  13. position:fixed;
  14. padding:2px;
  15. -webkit-transition: all 0.5s ease-in-out;
  16. -moz-transition: all 0.5s ease-in-out;
  17. -o-transition: all 0.5s ease-in-out;}
  18.  
  19. #music1:hover #music2{
  20. opacity:0;
  21. margin-top:-25px;
  22. z-index:-1;}
  23.  
  24. #music1:hover #music3{
  25. opacity:1;
  26. margin-top:-5px;
  27. z-index:99;}
  28.  
  29. #music1:hover #musiclist{
  30. opacity:1;}
  31.  
  32. #music2{
  33. /* THIS IS THE GIF DIV */
  34. opacity:1;
  35. background-color:#fff;
  36. border:1px dotted #ccc;
  37. padding:6px;
  38. -webkit-transition: all 0.5s ease-in-out;
  39. -moz-transition: all 0.5s ease-in-out;
  40. -o-transition: all 0.5s ease-in-out;}
  41.  
  42. #music3{
  43. /* THIS IS THE ACTUAL MUSIC PLAYER DIV */
  44. opacity:0;
  45. position:fixed;
  46. background-color:#fff;
  47. border:1px dashed #ccc;
  48. width:55px;
  49. height:20px;
  50. z-index:99;
  51. margin-left:-5px;
  52. overflow:hidden;
  53. -webkit-transition: all 0.5s ease-in-out;
  54. -moz-transition: all 0.5s ease-in-out;
  55. -o-transition: all 0.5s ease-in-out;}
  56.  
  57. #musiclist{
  58. /* THIS IS THE PLAYLIST DIV */
  59. opacity:0;
  60. position:fixed;
  61. padding:6px;
  62. border:1px dashed #ccc;
  63. margin-left:10px;
  64. margin-top:10px;
  65. font-family:consolas;
  66. font-size:8px;
  67. background-color:#fff;
  68. width:120px;
  69. color:#999;
  70. text-transform:uppercase;
  71. -webkit-transition: all 0.5s ease-in-out;
  72. -moz-transition: all 0.5s ease-in-out;
  73. -o-transition: all 0.5s ease-in-out;}
  74.  
  75. #musiclist h1{
  76. /*THIS IS THE PLAYLIST TITLE SETTINGS*/
  77. font-family:consolas;
  78. font-size:11px;
  79. margin-top:0px;
  80. margin-bottom:2px;
  81. font-style:normal;
  82. font-weight:normal;
  83. color:#1bbafc;
  84.  
  85. /*THIS IS THE PLAYLIST TITLE COLOR*/
  86. border-bottom:1px dotted #ccc;
  87. text-align:left;
  88. text-transform:uppercase;}
  89. </style>
  90.  
  91.  
  92. **** PLACE THIS IN INTERESTS SECTION ****
  93.  
  94. <div id="editthis">
  95. <div id="music1">
  96. <div id="music2">
  97.  
  98. <!-- YOU CAN CHANGE THE MUSIC GIF BELOW. -->
  99. <img src="http://i122.photobucket.com/albums/o260/mhilka/minigifs/minigif01.gif"></div>
  100.  
  101. <div id="music3">
  102. <Div style="margin-top:4px;">
  103. <!--- PUT YOUR MUSIC PLAYER HERE --->
  104.  
  105. </div>
  106. </div>
  107.  
  108. <div id="musiclist">
  109. <h1>Playlist</h1>
  110. <!-- PUT YOUR MUSIC TITLES HERE. BE SURE TO ADD A BREAK AFTER EACH ONE. -->
  111. 01. Song1 <br>
  112. 02. Song2 <br>
  113. 03. Song3 <br>
  114. </div>
  115.  
  116. </div>
  117. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement