Advertisement
ryeou

akemi player #1

May 31st, 2013
8,199
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.31 KB | None | 0 0
  1. #box {
  2. width: 18px;
  3. height: 25px;
  4. position: fixed;
  5. margin-top: 5px; /*use to position the box*/
  6. margin-left: 5px; /*use to position the box*/
  7. overflow: hidden;
  8. z-index: 100%;
  9. }
  10.  
  11. #player {
  12. width: 50px;
  13. margin-left: -20px;
  14. overflow: hidden;
  15. position: absolute;
  16. opacity: 0;
  17. -webkit-transition: all 0.7s ease-in-out;
  18. -moz-transition: all 0.7s ease-in-out;
  19. -o-transition: all 0.7s ease-in-out;
  20. -ms-transition: all 0.7s ease-in-out;
  21. transition: all 0.7s ease-in-out;
  22. }
  23.  
  24. #pix {
  25. margin-left: 4px;
  26. position:fixed;
  27. -webkit-transition: all 0.7s ease-in-out;
  28. -moz-transition: all 0.7s ease-in-out;
  29. -o-transition: all 0.7s ease-in-out;
  30. -ms-transition: all 0.7s ease-in-out;
  31. transition: all 0.7s ease-in-out;
  32. }
  33.  
  34. #box:hover #pix {
  35. opacity:0;
  36. -webkit-transition: all 0.7s ease-in-out;
  37. -moz-transition: all 0.7s ease-in-out;
  38. -o-transition: all 0.7s ease-in-out;
  39. -ms-transition: all 0.7s ease-in-out;
  40. transition: all 0.7s ease-in-out;
  41. }
  42.  
  43. #box:hover #player {
  44. opacity:1;
  45. -webkit-transition: all 0.7s ease-in-out;
  46. -moz-transition: all 0.7s ease-in-out;
  47. -o-transition: all 0.7s ease-in-out;
  48. -ms-transition: all 0.7s ease-in-out;
  49. transition: all 0.7s ease-in-out;
  50. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement