解决IE6 PNG 透明
一.IE6使用gif,其他则使用png
.pngImg { background:url(image.png); _background:url(image.gif);}
对于页面来说,该方法是最为完美的,缺陷即gif图像的效果问题。该方法用到的时候很少,依图片而定。
二.滤镜filter
background:url(a.png) repeat-x 0 0;
_background:none;
_filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src="a.png" ,sizingMethod="crop");
利用滤镜filter让IE6,并利用css hack区分开IE6,实际应用中使用条件注释将更完美。
缺陷:IE6下背景无法平铺,这个问题很严重。同时在性能上也有小问题,页面中次数不是很多的时候该办法还是可行的。
三.html中的img(插入在网页中的png图像)
function correctPNG()
{
for(var i=0; i {
var img = document.images[i]
var imgName = img.src.toUpperCase()
if (imgName.substring(imgName.length-3, imgName.length) == "PNG")
{
var imgID = (img.id) ? "id='" + img.id + "' " : ""
var imgClass = (img.className) ? "class='" + img.className + "' " : ""
var imgTitle = (img.title) ? "title='" + img.title + "' " : "title='" + img.alt + "' "
var imgStyle = "display:inline-block;" + img.style.cssText
if (img.align == "left") imgStyle = "float:left;" + imgStyle
if (img.align == "right") imgStyle = "float:right;" + imgStyle
if (img.parentElement.href) imgStyle = "cursor:hand;" + imgStyle
var strNewHTML = " + "filter:progid:DXImageTransform.Microsoft.AlphaImageLoader"
+ "(src=\'" + img.src + "\', sizingMethod='scale');\">"
img.outerHTML = strNewHTML
i = i-1
}
}
}
window.attachEvent("onload", correctPNG);
页面中插入一段js即可。原理同上,只是将img放入了background。
四.调用iepngfix.htc
方法来源:http://www.twinhelix.com/
下载htc文件:http://www.twinhelix.com/css/iepngfix/iepngfix.zip
以下片段添加至css文件
.pngImg {behavior: url(iepngfix.htc);}
以下片段添加至html文件
<div class="pngImg">PNG背景图片</div>
<img src="png图片" class="pngImg" alt="">
详细的应用方法这里就不介绍啦。
在逼不得已且身不由己必须使用PNG的情况下,这种方法应该是比较优秀的,虽然不能完美的解决IE6的平铺,但是至少是实现了拉伸,使得很多情况下可以代替平铺来使用。当然效率的问题任然是存在
滴,这是木有办法的。一般的小企业站用用是没“罪过”的!因为我昨晚就用在了一个实际的案例中….实在没辙了,客户一定要那种高质感的透明,煞费苦心的说了半天,最终只有妥协…
五.让“块”透明的方法
.div { FILTER: alpha(opacity=20); moz-opacity: 0.2; opacity: 0.2;}
测试IE6,IE7,IE8,FF2,FF3均通过。提示:IE6,IE7需设置一个宽度(100%也行),否则看不到效果。