Vanilla 1 is no longer supported or maintained. If you need a copy, you can get it here.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
Options

Extension: IE6PNGAlpha

StashStash
edited February 2007 in Vanilla 1.0 Help
Download: This will be made available after beta testing.

With the introduction of the Smile extension I noticed (again) that IE6 doesn't support PNG Alpha channels. So I've hacked together a little extension that hacks in support for Win IE5.5 and 6.0. I'd like a couple of willing helpers to try it out before I make it available for public download. Please whisper your email address and and I'll bung you over the extension.

Comments

  • Options
    I have always used this little jem for the IE6PNGAlpha issue...
    function correctPNG() { for(var i=0; i<document.images.length; 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 = "<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 i = i-1 } } } window.attachEvent("onload", correctPNG);
    Tried and tested. pic

    Posted: Saturday, 17 February 2007 at 8:32AM (AEDT)

This discussion has been closed.