Advertisement
morishige

colour invert

Feb 13th, 2022
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. <style>
  2. #sat img {
  3. display: block;
  4. width:400px;
  5. height:auto;
  6. filter:saturate(100%);
  7. }
  8.  
  9. #sat:hover img {
  10. filter: invert(100%);
  11. /* change depending on how saturated u want it to be */
  12. }
  13.  
  14. </style>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement