- 给html加上filter样式
grayscale()
将图像转换为灰度图像。值定义转换的比例。值为100%则完全转为灰度图像,值为0%图像无变化。值在0%到100%之间,则是效果的线性乘子。若未设置,值默认是0。
html{
-webkit-filter: grayscale(100%);
filter: grayscale(100%);
}
原图:

变灰后:

grayscale()
将图像转换为灰度图像。值定义转换的比例。值为100%则完全转为灰度图像,值为0%图像无变化。值在0%到100%之间,则是效果的线性乘子。若未设置,值默认是0。
html{
-webkit-filter: grayscale(100%);
filter: grayscale(100%);
}
原图:

变灰后:
