Advertisement
owlette

image hover;

Feb 15th, 2014
42
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.69 KB | None | 0 0
  1. <style type="text/css">
  2. .nizzle {
  3. position: absolute;
  4. overflow: hidden;
  5. opacity: 0.9;
  6. bottom: 1px;
  7. left: 1px;
  8. background-color: transparent;
  9. }
  10.  
  11. .shizzle {
  12. position: absolute;
  13. overflow: hidden;
  14. opacity: 0.0;
  15. bottom: 1px;
  16. left: 1px;
  17. -webkit-transition: all 0.9s ease-out; -moz-transition: all 0.9s ease-out;
  18. }
  19.  
  20. .shizzle:hover {
  21. opacity: 1;
  22. -webkit-transition: all 0.9s ease-out; -moz-transition: all 0.9s ease-out;
  23. -webkit-filter: grayscale(0)
  24. }
  25.  
  26. </style>
  27.  
  28. <div class="nizzle">
  29. <img src="URL">
  30. </div>
  31.  
  32. <div class="shizzle">
  33. <img src="URL">
  34. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement