onefuckingmin

music player 2

Nov 5th, 2014
3,053
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.70 KB | None | 0 0
  1. /** copy this code and paste before </style> **/
  2.  
  3.  
  4. #musicplayer {
  5. position: fixed;
  6. top: 80px;
  7. left: 20px;}
  8.  
  9. #musicplayer:hover .up{
  10. width:200px; /** change the width if not enough space for the song here **/
  11. opacity:1;
  12. -webkit-transition:all 0.7s;
  13. -moz-transition:all 0.7s;
  14. -ms-transition:all 0.7s;
  15. -o-transition:all 0.7s;
  16. transition:all 0.7s;}
  17.  
  18. .shut {
  19. border: 1px solid #000; /** change the border colour here **/
  20. background-color:#fff;
  21. padding-top:2px;
  22. padding-right:1px;
  23. position: fixed;
  24. width: 20px;
  25. height:20px;
  26. margin: 4px 5px 0px 0px;
  27. overflow: hidden;
  28. z-index: 9999;}
  29.  
  30. .up {
  31. position: fixed;
  32. background-color:#fff;
  33. top: 80px;
  34. left: 42px;
  35. font: 11px consolas;
  36. text-align:center;
  37. border: 1px solid #000; /** change the border colour here **/
  38. padding-top:6px;
  39. padding-right:1px;
  40. position: fixed;
  41. width: 200px;
  42. height:16px;
  43. margin: 4px 5px 0px 0px;
  44. overflow: hidden;
  45. z-index: 9999;
  46. opacity:0;
  47. -webkit-transition:all 0.7s;
  48. -moz-transition:all 0.7s;
  49. -ms-transition:all 0.7s;
  50. -o-transition:all 0.7s;
  51. transition:all 0.7s;}
  52.  
  53. /** copy this code and paste after <body> **/
  54. /** there i've written MUSICHERE put your song url **/
  55.  
  56. <div id="musicplayer">
  57.  
  58. <div class="up">song</div>
  59.  
  60. <div class="shut"><div style="margin-left:-2.5px;margin-top:0px;"><object type="application/x-shockwave-flash" data="http://flash-mp3-player.net/medias/player_mp3_mini.swf" width="200" height="20">
  61.     <param name="movie" value="http://flash-mp3-player.net/medias/player_mp3_mini.swf" />
  62.     <param name="bgcolor" value="#fff" />
  63.     <param name="FlashVars" value="mp3=MUSICHERE&amp;autoplay=0&amp;bgcolor=fff&amp;loadingcolor=4c4c4c&amp;buttoncolor=4c4c4c" />
  64. </object></div></div></div>
Add Comment
Please, Sign In to add comment