背景图片置灰加上样式:background-blend-mode: hue;
image图片置灰,给图片加样式
.gray {
-webkit-filter: grayscale(100%);
-moz-filter: grayscale(100%);
-ms-filter: grayscale(100%);
-o-filter: grayscale(100%);
filter: grayscale(100%);
filter: gray;
opacity:0.7;//通过改变透明度来调节灰色的程度
}
原文:https://blog.csdn.net/weixin_38668828/article/details/81630586