CSS 参考手册
CSS3 filter(滤镜) 属性
转化图像的透明程度
源代码:
点击运行 »
<!DOCTYPE html> <html> <head> <style> img { -webkit-filter: opacity(30%); /* Chrome, Safari, Opera */ filter: opacity(30%); } </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>
运行结果:
点击运行 »