cindie

Slide Out Music Player Tab {Css}

Jan 7th, 2012
7,019
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.95 KB | None | 0 0
  1. #player {
  2. left:200px; /* margin from left */
  3. top:-45px;
  4. position:fixed;
  5. -webkit-transition: all .5s ease-in-out;
  6. -moz-transition: all .5s ease-in-out;
  7. -o-transition: all .5s ease-in-out;
  8. z-index:999;
  9. }
  10.  
  11. #player:hover {top:-10px;}
  12.  
  13. #music {
  14. width:200px;
  15. padding:20px 0 10px 0;
  16. background:#fff; /* music player background color */
  17. border-bottom-right-radius: 5px;
  18. -moz-border-radius-bottomright: 5px;
  19. -webkit-border-bottom-right-radius: 5px;
  20. z-index: 9999;
  21. }
  22.  
  23. #tab {
  24. width: 50px;
  25. height: 35px;
  26. padding-top:5px;
  27. background-color:#fff; /* tab background color */
  28. background-image:url('http://media.tumblr.com/tumblr_lm6prnRzP61qfoi4t.gif'); /* image on tab */
  29. background-repeat:no-repeat;
  30. background-position:center;
  31. border-bottom-left-radius: 5px;
  32. -moz-border-radius-bottomleft: 5px;
  33. -webkit-border-bottom-left-radius: 5px;
  34. border-bottom-right-radius: 5px;
  35. -moz-border-radius-bottomright: 5px;
  36. -webkit-border-bottom-right-radius: 5px;
  37. }
Advertisement
Add Comment
Please, Sign In to add comment