全站变灰

在HTML节点中添加

-webkit-filter:grayscale(.95);

如需兼容其他浏览器

html{
    -webkit-filter:grayscale(.95);
    -moz-filter:grayscale(.95);
    -ms-filter:grayscale(.95);
    -o-fliter:grayscale(.95);
    filter:grayscale(.95);
  filter:progid:DXImageTransform.Microsoft.BasicImage(grayscale=1);
}

兼容所有浏览器(PC,Phone都支持)(Firefox增加了对SVG图像的支持),除了IE不支持。。

(反正IE存在的目的就是使用其他浏览器23333)

原文地址:https://www.cnblogs.com/xuanjiange/p/12633532.html