万户网络知识库 > 常见问题 > 网站置灰
网站置灰
更新时间:2026-01-20 15:19:28 访问量:
5.0 后台操作:
如果后台没有,就在 head 加样式:
<style>
html {
-webkit-filter: grayscale(100%);
-moz-filter: grayscale(100%);
-ms-filter: grayscale(100%);
-o-filter: grayscale(100%);
filter:progid:DXImageTransform.Microsoft.BasicImage(g
rayscale=1);
_filter:none;
}
</style>