= 5.5) && (document.body.filters)) { for(var j=" />
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 { 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 = " + " style="" + "width:" + img.width + "px; height:" + img.height + "px;" + imgStyle + ";" + "filter:progid:DXImageTransform.Microsoft.AlphaImageLoader" + "(src='" + img.src + "', sizingMethod='scale');">" img.outerHTML = strNewHTML j = j-1 } } } } window.attachEvent("onload", correctPNG); |
#id{background:url(圖片路徑) ;_filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(enabled='true', sizingMethod='scale', src="圖片路徑");_background:none;} |
2、解決png圖片在html中(zhōng)IMG标簽使用PNG圖片IE6中(zhōng)背景不透明方法
1、新建一(yī)個JS文件爲iepngfx.js,進以上JS代碼拷貝到JS文件裏
2、在HTML中(zhōng)聲明隻有IE6讀取此新建JS文件iepngfx.js中(zhōng)
隻允許IE6讀取此JS文件方法:
< !--[if IE 6]>
< script src="images/iepngfx.js" data-ke-src="images/iepngfx.js" language="javascript" type="text/javascript">
< ![endif]-->
3、在html中(zhōng)使用圖片标簽IMG運用PNG圖片,在IE6試試看PNG圖片背景是否透明了。
3、在CSS中(zhōng)png作爲網頁背景時在IE6中(zhōng)背景透明方法
同樣方法
1、新建JS文件同上,命名爲iepngfx.js,進以上JS代碼拷貝到JS文件裏
2、在HTML中(zhōng)聲明隻有IE6讀取此新建JS文件iepngfx.js中(zhōng)
隻允許IE6讀取此JS文件方法:
< !--[if IE 6]>
< script src="images/iepngfx.js" data-ke-src="images/iepngfx.js" language="javascript" type="text/javascript">
< ![endif]-->
3、在CSS中(zhōng)運用PNG圖片作爲背景的地方加入以下(xià)CSS代碼:
#id{background:url(圖片路徑) ;_filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(enabled='true', sizingMethod='scale', src="圖片路徑");_background:none;} |
這樣即可解決PNG圖片在HTML中(zhōng)img作爲圖片圖标背景不能透明或PNG圖片作爲網頁背景background運用的一(yī)樣實現PNG圖片背景透明。
下(xià)一(yī)篇 CSS中(zhōng)常用中(zhōng)文字體(tǐ)轉Unicode編碼表
上一(yī)篇: Windows系統下(xià)各浏覽器常用CSS hack彙總表圖