IE6下PNG插入图片透明

来源:互联网 发布:spirra软件 编辑:程序博客网 时间:2024/05/19 04:27

找了好多种方法有javascript处理插入PNG图片,css处理插入PNG图片的,但是觉得这种方式比较好 拿出来与大家分享作为一个前端工程师无论是前台div、css、javascript要好J2EE、struts、hibernate、spring也要能够熟练运用。不多说了下面介绍方法:

在图片引用样式的地方加上这段代码就可以了

.register img{

azimuth: expression(
  this.pngSet ? this.pngSet = true:(this.nodeName == "IMG" && this.src.toLowerCase().indexOf('.png')>-1 ? (this.runtimeStyle.backgroundImage = "none",
  this.runtimeStyle.filter = "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='" + this.src + "', sizingMethod='image')",
  this.src = "/images/images_wyt/transparent.gif"):(this.origBg = this.origBg? this.origBg :this.currentStyle.backgroundImage.toString().replace('url("','').replace('")',''),
  this.runtimeStyle.filter = "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='" + this.origBg + "', sizingMethod='crop')",
  this.runtimeStyle.backgroundImage = "none")),this.pngSet=true
 );

}

原创粉丝点击