如何创建:黑白图像
- Previous Page Image Effects
- Next Page Image Text
学习如何使用 CSS 创建“黑白”图像。
黑白图像
使用 CSS filter
属性将图像转换为黑白图像。

原始图像

灰度(100%)
灰度实例
将所有图像的颜色改为黑白(100% 灰色):
img { -webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */ filter: grayscale(100%); }
Related Pages
Tutorial:Gambar CSS
Reference Manual:Properti filter CSS
- Previous Page Image Effects
- Next Page Image Text