Light up image on hover

前端 未结 6 2291
悲&欢浪女
悲&欢浪女 2021-02-07 21:18

Take a look at http://www.kickstarter.com.

When you hover over their logo, the image lights up. Is this effect doable without using a different image on hover?

6条回答
  •  伪装坚强ぢ
    2021-02-07 21:35

    As far as I am aware you can't do what you require with pure CSS at this point, due to the blue background. I think your best bet is edit the image in photoshop to be its :hover brightness, and then use something like:

    img { 
      opacity: 0.7; 
    } 
    
    img:hover { 
      opacity: 1; 
    }
    

    Changing the opacity on hover will work:

    img:hover {
       opacity: 0.5;
    }
    

    Fiddle

提交回复
热议问题