IE6.0中使用Javascript支援png格式圖片

來源:互聯網
上載者:User

你知道如何用Javascript讓IE6.0支援png格式的圖片嗎,這裡和大家分享一下,如果把PNG圖片插入網頁的話可以給網站內容增色不少!更重要的是在不增加圖片容量大小的情況下提高了頁面的圖片的品質。

用Javascript讓IE6.0支援png格式的圖片

PNG圖片有很好的品質。陰影製作效果也不會有雜邊,很流暢。如果插入網頁的話可以給網站內容增色不少!更重要的是在不增加圖片容量大小的情況下提高了頁面的圖片的品質。對於有複雜背景,如:在有顏色過度背景上插入不規則邊框的圖片帶來極大很便利!

但目前IE中對於插入的透明背景的.png的圖片是不能正常顯示的。IE會自動給”.png”格式的圖片加個灰色背景。

解決這個的方法是增加javascript。具體方法如下:

把下面的代碼放在head區就可以解決問題了。

以下是引用片段:

<script language=”javascript”> 
function correctPNG()
{
for(var i=0; i<document.images.length; i++)
{

var img = document.images[i];
var imgimgName = 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.parentNode.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 ;

}
}
}
</script>

也可以把這段代碼單獨加在一張圖片上:

以下是引用片段:

<span style="filter:progid:   
DXImageTransform.Microsoft.AlphaImageLoader
(src='male.png', sizingMethod='scale');"> </span>

還有一點:所有的png格式的圖片一定要加上寬度和 高度 不然圖片大小會發生變化。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.