`
xlxin
  • 浏览: 14973 次
  • 性别: Icon_minigender_1
  • 来自: 广州
社区版块
存档分类
最新评论

IE6上解决PNG透明图片问题

阅读更多
到官网下载DD_belatedPNG:http://dillerdesign.com/experiment/DD_belatedPNG/#download
然后你的页面上添加如下代码即可:
<!--[if IE 6]>
<script src="DD_belatedPNG.js" mce_src="DD_belatedPNG.js"></script>
<script type="text/javascript"> /* EXAMPLE */ DD_belatedPNG.fix('.png_bg'); /* 将 .png_bg 改成你应用了透明PNG的CSS选择器*/ </script>
<![endif]-->


如果是在在iframe中的页面,请修改DD_belatedPNG源码:
找到如下代码:
if (el.currentStyle.position == 'static') {
    el.style.position = 'relative'
}
修改为:
if (el.currentStyle.position == 'static') {
  if(el.nodeName.toLowerCase()!='html'){
        el.style.position = 'relative'
  }
}
分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics