CSS 参考手册
CSS3 filter(滤镜) 属性
调整图像的对比度
源代码:
点击运行 »
<!DOCTYPE html> <html> <head> <style> img { -webkit-filter: contrast(200%); /* Chrome, Safari, Opera */ filter: contrast(200%); } </style> </head> <body> <p>调整图像的对比度:</p> <img src="/examples/pineapple.jpg" alt="Pineapple" width="300" height="300"> <p><strong>注意:</strong> Internet Explorer 不支持 filter 属性。</p> </body> </html>
运行结果:
点击运行 »