Advertisement
krluce

image fade on hover

May 31st, 2013
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.36 KB | None | 0 0
  1. /* IMAGE FADE ON HOVER */
  2.  
  3. img{
  4.     opacity: 1;
  5.  
  6. z-index: .99999999999999px;
  7.  
  8. -webkit-transition: all 0.6s ease-in-out;
  9.  
  10. -moz-transition: all 0.6s ease-in-out;
  11.  
  12. -o-transition: all 0.6s ease-in-out;
  13.  
  14. -ms-transition: all 0.6s ease-in-out;
  15.  
  16. transition: all 0.6s ease-in-out;
  17. }
  18.  
  19. img:hover{
  20.     opacity: 0.85
  21.     }
  22.  
  23. /* END IMAGE FADE ON HOVER */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement