css3使网页、图片变成灰色兼容大多数浏览器
2016-06-23来源:易贤网

这篇文章主要介绍了使用css3使网页、图片变成灰色且兼容大多数浏览器的方法,感兴趣的朋友可以参考下。

在网页头部引用下面内容即可,针对ie、google、火狐、safari、opera都有效。

代码如下:

html{filter:grayscale(100%);

-webkit-filter:grayscale(100%);

-moz-filter:grayscale(100%);

-ms-filter:grayscale(100%);

-o-filter:grayscale(100%);

filter:progid:dximagetransform.microsoft.basicimage(grayscale=1);

-webkit-filter:grayscale(1)}

推荐信息