实现网页变灰的方法

研究了下搜索过的css,在html中任意地方加上以下css变能做到使整个页面变灰,兼容多种浏览器,亲测有效。

<style>
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);
}
</style>

原创文章 92 获赞 91 访问量 3万+

猜你喜欢

转载自blog.csdn.net/secretstarlyp/article/details/105306821