krluce

custom fade in/out and grayscale/color for tumblr themes

May 19th, 2013
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.69 KB | None | 0 0
  1. /* GRAYSCALE/HOVER EFFECTS */
  2. img{
  3.     opacity: 0.6;
  4.    
  5. }
  6. img:hover{
  7.     opacity: 1
  8.     }
  9.  
  10. img{
  11. -webkit-filter: grayscale(100%);
  12.  
  13. z-index: .99999999999999px;
  14.  
  15. -webkit-transition: all 0.6s ease-in-out;
  16.  
  17. -moz-transition: all 0.6s ease-in-out;
  18.  
  19. -o-transition: all 0.6s ease-in-out;
  20.  
  21. -ms-transition: all 0.6s ease-in-out;
  22.  
  23. transition: all 0.6s ease-in-out;
  24.  
  25. }
  26.  
  27. img:hover{
  28.     -webkit-filter: saturate(100%);
  29.  
  30. z-index: .99999999999999px;
  31.  
  32. -webkit-transition: all 0.6s ease-in-out;
  33.  
  34. -moz-transition: all 0.6s ease-in-out;
  35.  
  36. -o-transition: all 0.6s ease-in-out;
  37.  
  38. -ms-transition: all 0.6s ease-in-out;
  39.  
  40. transition: all 0.6s ease-in-out;
  41. }
  42.  
  43. /* END GRAYSCALE/HOVER EFFECTS */
Advertisement
Add Comment
Please, Sign In to add comment