Advertisement
GIFCITY

greyscale to color on hover

Jan 15th, 2024 (edited)
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.11 KB | None | 0 0
  1. <style>
  2. img {
  3. -webkit-filter: grayscale(100%);
  4. }
  5.  
  6. img:hover {
  7. -webkit-filter: grayscale(0%);
  8. </style>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement