领先的免费Web技术教程,涵盖HTML到ASP.NET

网站首页 > 知识剖析 正文

前端使用css一键置灰网页_css置灰不可点击

nixiaole 2025-09-12 01:12:41 知识剖析 1 ℃

方案一

body {
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: grayscale(100%);
}

方案二

html {
      background: #ffffff;
      position: relative;
}
html::before {
      content: "";
      position: absolute;
      inset: 0;
      pointer-events: none;
      z-index: 999;
      mix-blend-mode: color;
      background: rgba(0, 0, 0, 0.5);
}

Tags:

最近发表
标签列表