优秀的编程知识分享平台

网站首页 > 技术文章 正文

前端使用css一键置灰网页_web前端怎么设置页面颜色

nanyue 2025-09-24 01:07:40 技术文章 2 ℃

方案一

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);
}
最近发表
标签列表