BootWiki教程网
源代码:
点击运行
<!DOCTYPE html> <html> <head> <style> img { -webkit-filter: grayscale(50%); /* Chrome, Safari, Opera */ filter: grayscale(50%); } </style> </head> <body> <p>将图像转换为灰度图像:</p> <img alt="Pineapple" height="300" src="pineapple.jpg" width="300"> <p><strong>注意:</strong> Internet Explorer 不支持 filter 属性。</p> </body> </html>
运行结果