2020/4/4 全国哀悼日,各大网站首页都变成了灰色,那么如何实现这样的效果呢?

只要添加如下的全局CSS样式即可:

html,html *{
  filter:gray!important;
  filter:progid:DXImageTransform.Microsoft.BasicImage(grayScale=1);
  filter:grayscale(100%);
  -webkit-filter:grayscale(100%);
  -moz-filter:grayscale(100%);
  -ms-filter:grayscale(100%);
  -o-filter:grayscale(100%);
}

 

相关文章:

  • 2021-12-10
  • 2021-10-20
  • 2021-11-30
  • 2022-12-23
  • 2021-05-29
  • 2021-07-12
  • 2021-05-07
  • 2021-09-03
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2021-08-31
  • 2021-06-18
  • 2021-10-27
  • 2021-11-18
  • 2021-10-31
相关资源
相似解决方案