DD_belatedPNG.js 是一个能是IE6支持p显示ng透明图片,而且还支持背景循环(background-repeat)和定位(backgrond-position) ,支持focus,Hover。
使用方法:
<!--
[
if IE
6
]
>
<script src
=
"DD_belatedPNG.js"
></script
>
<script
> DD_belatedPNG.
fix
(
'.png_bg'
)
;
</script
>
<!
[endif
]
-->
其中:
DD_belatedPNG.js 为文件路径,.png_bg 为需要引用的容器名,如果需要多处引用可以使用如下方法:
DD_belatedPNG.
fix
(
'.example1, .example2, img'
)
;
其中.example1 和 .example2 为class 选择器,img 就是标签了。
如果需要修复页面上的所有PNG图片,则可以使用
DD_belatedPNG.
fix
(‘
*
');
ID选择器例子:
1 | DD_belatedPNG.fix('#png'); |
伪类例子:
1 | DD_belatedPNG.fix('.png a:hover,.png a:focus'); |
img标签例子:
1 | DD_belatedPNG.fix('img'); |
如果是多个直接加逗号(英文下的)就行。例如:
1 | DD_belatedPNG.fix('.png_bg,#png,.png a:hover,.png a:focus,img'); |