目录
前言
在国家公祭日、清明节、悼念某事件遇难者等等,让自己网站变成黑白色、灰白色,以表默哀或悼念,效果见下图。

代码
代码放在</head>
的上面
<style>
html {
filter:grayscale(100%);
-webkit-filter:grayscale(100%);
-moz-filter:grayscale(100%);
-ms-filter:grayscale(100%);
-o-filter:grayscale(100%);
-webkit-filter:grayscale(1);
}
</style>