Change color of PNG image via CSS?

后端 未结 16 1391
自闭症患者
自闭症患者 2020-11-22 07:33

Given a transparent PNG displaying a simple shape in white, is it possible to somehow change the color of this through CSS? Some kind of overlay or what not?

16条回答
  •  长情又很酷
    2020-11-22 07:45

    To literally change the color, you could incorporate a CSS transition with a -webkit-filter where when something happens you would invoke the -webkit-filter of your choice. For example:

    img {
        -webkit-filter:grayscale(0%);
        transition: -webkit-filter .3s linear;
        }
    img:hover 
        {
        -webkit-filter:grayscale(75%);
        }
    

提交回复
热议问题