Advertisement
sunkei

Soju Tut

May 17th, 2012
2,625
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.97 KB | None | 0 0
  1. <style type="text/css">
  2.  
  3. #bloc
  4. {position:fixed;
  5. top:50px;
  6. left:100px;}
  7.  
  8. .transition
  9. {-webkit-transition: opacity 0.7s linear;-webkit-transition: all 0.7s ease-in-out;-moz-transition: all 0.7s ease-in-out;-o-transition: all 0.7s ease-in-out;}
  10.  
  11. #picture
  12. {width:250px;}
  13.  
  14. #picture:hover
  15. {width:340px;}
  16.  
  17. #left
  18. {float:left;
  19. overflow:hidden;
  20. width:125px;}
  21.  
  22. #right
  23. {overflow:hidden;
  24. width:125px;}
  25.  
  26. #about
  27. {float:left;
  28. width:0px;
  29. height:0px;
  30. opacity:0;}
  31.  
  32.  
  33. #picture:hover #about
  34. {width:125px;
  35. padding:20px 10px 20px 10px;
  36. opacity:1;}
  37.  
  38. #picture:hover #left
  39. {margin-left:-65px;}
  40.  
  41. </style>
  42.  
  43.  
  44.  
  45.  
  46. <body>
  47.  
  48. <div id="bloc">
  49. <div id="picture" class="transition">
  50. <div id="left" class="transition">
  51. <img width="250px" src="SAME IMG URL HERE">
  52. </div>
  53. <div id="about" class="transition">Text part here.</div>
  54. <div id="right" class="transition">
  55. <img width="250px" style="margin-left:-125px;" src="SAME IMG URL HERE">
  56. </div>
  57. </div>
  58. </div>
  59.  
  60. </body>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement