Light up image on hover

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

    The original CSS has:

    img:hover {
        filter: alpha(opacity=80);
        opacity: .8;
    }
    

    Fiddle: http://jsfiddle.net/praveenscience/hfUpk/

提交回复
热议问题