1. 程式人生 > >解決IE6中PNG背景不透明方法 解決PNG圖片在IE6中背景不透明方法

解決IE6中PNG背景不透明方法 解決PNG圖片在IE6中背景不透明方法

1、解決PNG圖片在IE6中背景不透明的CSS與JS程式碼 -  TOP
JS程式碼

 function correctPNG() // correctly handle PNG transparency in Win IE 5.5 & 6.
{
var arVersion = navigator.appVersion.split("MSIE")
var version = parseFloat(arVersion[1])
if ((version >= 5.5) && (document.body.filters))
{
for(var j=0; j<document.images.length; j++)
{
var img = document.images[j]
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 = "<span " + imgID + imgClass + imgTitle
+ " style=\"" + "width:" + img.width + "px; height:" + img.height + "px;" + imgStyle + ";"
+ "filter:progid:DXImageTransform.Microsoft.AlphaImageLoader"
+ "(src=\'" + img.src + "\', sizingMethod='scale');\"></span>"
img.outerHTML = strNewHTML
j = j-1
}
}
}
}
window.attachEvent("onload", correctPNG);

CSS程式碼
 
 #id{background:url(圖片路徑) ;_filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(enabled='true', sizingMethod='scale', src="圖片路徑");_background:none;}

 

2、解決png圖片在html中IMG標籤使用PNG圖片IE6中背景不透明方法 -  TOP
1、新建一個JS檔案為iepngfx.js,進以上JS程式碼拷貝到JS檔案裡
2、在HTML中宣告只有IE6讀取此新建JS檔案iepngfx.js中
只允許IE6讀取此JS檔案方法:
<!--[if IE 6]>
<script src="images/iepngfx.js" language="javascript" type="text/javascript"></script>
<![endif]-->
3、在html中使用圖片標籤IMG運用PNG圖片,在IE6試試看PNG圖片背景是否透明瞭。

3、在CSS中png作為網頁背景時在IE6中背景透明方法 -  TOP
同樣方法
1、新建JS檔案同上,命名為iepngfx.js,進以上JS程式碼拷貝到JS檔案裡
2、在HTML中宣告只有IE6讀取此新建JS檔案iepngfx.js中
只允許IE6讀取此JS檔案方法:
<!--[if IE 6]>
<script src="images/iepngfx.js" language="javascript" type="text/javascript"></script>
<![endif]-->
3、在CSS中運用PNG圖片作為背景的地方加入以下CSS程式碼:

 #id{background:url(圖片路徑) ;_filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(enabled='true', sizingMethod='scale', src="圖片路徑");_background:none;}

這樣即可解決PNG圖片在HTML中img作為圖片圖示背景不能透明或PNG圖片作為網頁背景background運用的一樣實現PNG圖片背景透明。

以下JS和CSS方法解決PNG圖片在IE6中背景不透明方法對你有用。