Advertisement
KreativeMente

CSS3 Opacity Trans

Jun 8th, 2013
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.23 KB | None | 0 0
  1. div > img {
  2.     opacity: 1;
  3.     -webkit-transition: opacity 1s linear;
  4.     -moz-transition: opacity 1s linear;
  5.     -o-transition: opacity 1s linear;
  6.     transition: opacity 1s linear;
  7. }
  8.  
  9. div > img:hover {
  10.     opacity: .5;
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement