css3的filter(滤镜) 属性
修改图片的颜色为黑白 (100% 灰度):
img {
filter: grayscale(100%);
}
如何让一个网站的图片全部变灰呢
不需要一张一张修改 太麻烦了
只需要在CSS文件的html节点上添加下面一条定义即可:
html {-webkit-filter: grayscale(100%);}
css3的filter(滤镜) 属性
修改图片的颜色为黑白 (100% 灰度):
img {
filter: grayscale(100%);
}
如何让一个网站的图片全部变灰呢
不需要一张一张修改 太麻烦了
只需要在CSS文件的html节点上添加下面一条定义即可:
html {-webkit-filter: grayscale(100%);}