想要设置网站图片默认为灰色,鼠标经过时显示为彩色
在网上找了很多方法, 修改css后,在非IE浏览器内都可以正常显示为灰色,但在IE11浏览器内一直为彩色
查看好多教程,说是IE6-9都可以,但更高版本就不行了,有什么好办法没有
代码如下:
{
-webkit-filter: grayscale(1);
-moz-filter: grayscale(1);
filter: grayscale(1);
-ms-filter: grayscale(1);
-o-filter: grayscale(1);
filter: gray;
}
请各位帮忙看看是什么原因
If the image format is not SVG, the filter is not supported on IE browser.
If it is svg, filter is only supported on ie10 and 11.
See caniuse for details
It may be that the current IE version is not compatible with some CSS3 properties
svg or canvas
Can use canvas