人狠话不多,直接上代码
-webkit-filter: grayscale(100%);
-moz-filter: grayscale(100%);
-ms-filter: grayscale(100%);
-o-filter: grayscale(100%);
filter: grayscale(100%);
filter: progid:DXImageTransform.Microsoft.BasicImage(grayscale=1);
通通变灰,别问通通是谁。
那这段代码是什么意思呢?
直接把 filter grayscale
复制到搜索引擎里看一下。
当参数为 0 的时候,颜色是正常的。
然后依次试一下 50%:
MDN 是怎么解释 grayscale()
函数呢?
The grayscale() CSS function converts the input image to grayscale. Its result is a.
大致的意思就是,grayscale 是一个 CSS 函数,可以把图像转成灰色,参数是个百分比,结果返回一个 filter 函数。
TheCSS data type represents a graphical effect that can change the appearance of an input image. It is used in the filter and backdrop-filter properties.
filter 函数可以用来改变图像的显示效果,用于 CSS 的 filter 属性。除了 grayscale 函数,可选项还有以下这些:
可以看到,目前的主流浏览器版本都支持 grayscale 函数,比如说 PC 端的 Chrome、edge、Firefox、Opera、Safari 等等,除了 IE。
技术实现起来也比较简单!