菜鸟学堂
在线运行
源代码
<!DOCTYPE html> <html> <head> <style> img { -webkit-filter: sepia(100%); /* Chrome, Safari, Opera */ filter: sepia(100%); } </style> </head> <body> <p>将图像转换为深褐色:</p> <img src="pineapple.jpg" alt="Pineapple" width="300" height="300"> <p><strong>注意:</strong> Internet Explorer 不支持 filter 属性。</p> </body> </html>
运行结果
在线运行
菜鸟学堂 edu.jb51.net