Advertisement
damadellago

Music 4

Apr 4th, 2012
1,520
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.63 KB | None | 0 0
  1. Paste the following code anywhere between the <style type="text/css"> and </style> tag of your blog
  2. ---------------------------------------------------------------------------------------
  3. #musicplayer{
  4. opacity:0.9;
  5. text-align: center;
  6. position:fixed;
  7. left:100px;
  8. bottom:-40px;
  9. -webkit-transition: all .4s ease-in-out;
  10. -moz-transition: all .4s ease-in-out;
  11. -o-transition: all .4s ease-in-out;
  12. z-index:999;
  13. }
  14.  
  15. #musicplayer:hover{
  16. opacity:1;
  17. bottom:0px;
  18. -webkit-transition: all .4s ease-in-out;
  19. -moz-transition: all .4s ease-in-out;
  20. -o-transition: all .4s ease-in-out;
  21. }
  22.  
  23.  
  24. #music{
  25. padding:7px;
  26. background:#FFFFFF;
  27. border-bottom: 5px #000000 solid;
  28. width:200px;
  29. z-index: 9999;
  30. text-align:center;
  31. -moz-border-radius: 0px 0px 0px 0px ;
  32. -webkit-border-radius: 0px 0px 0px 0px ;
  33. -o-border-radius: 0px 0px 0px 0px ;
  34. border-radius: 0px 0px 0px 0px ;
  35. }
  36.  
  37. #musictab{
  38. padding:7px;
  39. background:#FFFFFF;
  40. border-top: 5px #000000 solid;
  41. width:200px;
  42. -moz-border-radius: 100px 100px 0px 0px;
  43. -webkit-border-radius: 100px 100px 0px 0px;
  44. -o-border-radius: 100px 100px 0px 0px;
  45. border-radius: 100px 100px 0px 0px;
  46. }
  47.  
  48. -------------------------------------------------------------------------------------------------------------
  49. The paste the following code anywhere between the <body> and </body> tags of your blog
  50. -------------------------------------------------------------------------------------------------------------
  51.  
  52. {block:IndexPage}
  53. <div id="musicplayer">
  54. <div id="musictab"><img src="IMAGE URL HERE"></div>
  55. <div id="music">
  56. <center>PLAYER CODE HERE</center>
  57. </div>
  58. </div>{/block:IndexPage}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement