Advertisement
Guest User

Untitled

a guest
Sep 2nd, 2015
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. CSS
  2. .contenido{
  3. background-color: #FFFFFF;
  4. text-align: justify;
  5. margin:auto;
  6. margin:10px;
  7. padding:14px;
  8. width:500px;
  9. }
  10. .colorsito {
  11. background: #000000;
  12. width:400px;
  13. opacity: 1;
  14. float:left;
  15. padding:10px;
  16. margin:10px;
  17. z-index:900;
  18. position:absolute;
  19. -webkit-transition: all .7s ease-in;
  20. -moz-transition: all .7s ease-in;
  21. -o-transition: all .7s ease-in;
  22. }
  23.  
  24. .contenido:hover .colorsito {
  25. opacity: 0;
  26. -webkit-transition: all .9s ease;
  27. -moz-transition: all .9s ease;
  28. -o-transition: all .9s ease;
  29. }
  30.  
  31.  
  32. Capas
  33.  
  34. <div class="contenido"><Div class="colorsito">
  35.  
  36. Aqui lo que quiera que desaparesca
  37.  
  38. </div></div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement