Light up image on hover

前端 未结 6 2373
悲&欢浪女
悲&欢浪女 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:51

    you can use opacity value between 0.1 to 1 very light and 1 value is dark (default)

    img {
        filter: alpha(opacity=100);
        opacity: 1;
    }
    img:hover {
        filter: alpha(opacity=70);
        opacity: 0.7;
    }
    

提交回复
热议问题