将页面变成灰色的 CSS

将下面的 css 样式添加到 <body/> 标签,就可以让页面色彩变成灰色了。

-webkit-filter: grayscale(100%);
-moz-filter: grayscale(100%);
-ms-filter: grayscale(100%);
-o-filter: grayscale(100%);
filter: grayscale(100%);
filter: url(data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id=… 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0'/></filter></svg>#grayscale);
-webkit-filter: grey;
filter: gray;

  

猜你喜欢

转载自www.cnblogs.com/lei01/p/12638908.html