pngfix.js.svn-base
上传用户:market2
上传日期:2018-11-18
资源大小:18786k
文件大小:1k
源码类别:

外挂编程

开发平台:

Windows_Unix

  1. // Correctly handle PNG transparency in Win IE 5.5 or higher.
  2. // http://homepage.ntlworld.com/bobosola. Updated 02-March-2004
  3. function correctPNG() 
  4.    {
  5.    for(var i=0; i<document.images.length; i++)
  6.       {
  7.   var img = document.images[i]
  8.   var imgName = img.src.toUpperCase()
  9.   if (imgName.substring(imgName.length-3, imgName.length) == "PNG")
  10.      {
  11.  var imgID = (img.id) ? "id='" + img.id + "' " : ""
  12.  var imgClass = (img.className) ? "class='" + img.className + "' " : ""
  13.  var imgTitle = (img.title) ? "title='" + img.title + "' " : "title='" + img.alt + "' "
  14.  var imgStyle = "display:inline-block;" + img.style.cssText 
  15.  if (img.align == "left") imgStyle = "float:left;" + imgStyle
  16.  if (img.align == "right") imgStyle = "float:right;" + imgStyle
  17.  if (img.parentElement.href) imgStyle = "cursor:hand;" + imgStyle
  18.  var strNewHTML = "<span " + imgID + imgClass + imgTitle
  19.  + " style="" + "width:" + img.width + "px; height:" + img.height + "px;" + imgStyle + ";"
  20.      + "filter:progid:DXImageTransform.Microsoft.AlphaImageLoader"
  21.  + "(src='" + img.src + "', sizingMethod='scale');" class='img'></span>" 
  22.  img.outerHTML = strNewHTML
  23.  i = i-1
  24.      }
  25.       }
  26.    }
  27. window.attachEvent("onload", correctPNG);