kylertism

invert on hover images

Aug 24th, 2025 (edited)
4
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. <style>
  2.  
  3. #inv {
  4. display: flex;
  5. justify-content: center;
  6. transition: transform 0.5s ease;
  7. }
  8.  
  9.  
  10. #inv:hover {
  11. filter: invert(1);
  12. transition: all 0.5s;
  13. }
  14.  
  15. </style>
  16.  
  17. <img src="https://file.garden/Z8S48e3deXuAgcfA/resource/example" id="inv">
Advertisement
Add Comment
Please, Sign In to add comment