Advertisement
damadellago

Music 1

Apr 4th, 2012
5,560
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.60 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. top:-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. top: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-top: 5px #000000 solid;
  28. width:200px;
  29. z-index: 9999;
  30. text-align:center;
  31. -moz-border-radius: 0px 0px 10px 0px ;
  32. -webkit-border-radius: 0px 0px 10px 0px ;
  33. -o-border-radius: 0px 0px 10px 0px ;
  34. border-radius: 0px 0px 10px 0px ;
  35. }
  36.  
  37. #musictab{
  38. padding:7px;
  39. background:#FFFFFF;
  40. border-bottom: 5px #000000 solid;
  41. width:100px;
  42. -moz-border-radius: 0px 0px 100px 100px;
  43. -webkit-border-radius: 0px 0px 100px 100px;
  44. -o-border-radius: 0px 0px 100px 100px;
  45. border-radius: 0px 0px 100px 100px;
  46. }
  47.  
  48.  
  49.  
  50. -------------------------------------------------------------------------------------------------------------
  51. The paste the following code anywhere between the <body> and </body> tags of your blog
  52. -------------------------------------------------------------------------------------------------------------
  53.  
  54. {block:IndexPage}
  55. <div id="musicplayer">
  56. <div id="music">
  57. <center>PLAYER CODE HERE</center>
  58. </div>
  59. <div id="musictab"><img src="URL OF IMAGE HERE"></div>
  60. </div>{/block:IndexPage}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement