专业编程教程与实战项目分享平台

网站首页 > 技术文章 正文

前端使用css一键置灰网页_网页灰色css

ins518 2025-10-08 18:03:42 技术文章 10 ℃ 0 评论

方案一

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:

本文暂时没有评论,来添加一个吧(●'◡'●)

欢迎 发表评论:

最近发表
标签列表