CSS
CSS 图像透明/不透明
CSS样式
源代码:
点击运行 »
img { opacity: 0.4; filter: alpha(opacity = 40); /* IE8 及其更早版本 */ } img: hover { opacity: 1.0; filter: alpha(opacity = 100); /* IE8 及其更早版本 */ }
运行结果:
点击运行 »