使用 CSS 设置灰度效果
灰度效果用于将对象的色彩转换成 256 种灰色调。该滤镜使用以下参数:
参数 | 说明 |
---|---|
Gray | 将对象的色彩转换成 256 种灰色调。 |
示例
你可以尝试运行以下代码以设置灰度效果:
<html> <head> </head> <body> <img src = "/css/images/logo.png" alt = "CSS Logo" style = "Filter: Gray"> <p>Text Example:</p> <div style = "width: 357; height: 50; font-size: 30pt; font-family: Arial Black; color: red; Filter: Gray"> CSS Tutorials </div> </body> </html>
广告