I found a fairly easy solution a while ago, try this:

http://www.stilbuero.de/2006/03/15/png-alpha-transparency-fast-and-easy/

It boils down to put a little dynamic property into your style sheet:

img.png {
     background-image: expression(
         this.runtimeStyle.backgroundImage = "none",
         this.runtimeStyle.filter = 
"progid:DXImageTransform.Microsoft.AlphaImageLoader(src='" + this.src + 
"', sizingMethod='image')",
         this.src = "/path/to/transparent.gif"
     );
}


-- Klaus


Andy Matthews schrieb:
> I'm using a PNG fix javascript to load in some product images on a site that
> my company did. It "works" great, in that the images load in properly and
> are transparent. The problem is that the page loads endlessly, even though
> nothing is missing.
> 
> My first question is "does anyone know why this is happening"?. A second
> question is, "does anyone have a PNG fix that works correctly?"
> 
> Here's the site:
> http://www.bigcomfycouchstore.com
> 
> All of the product images on the front page are PNGs
> 
> Thanks in advance.
> 
> <!----------------//------
> andy matthews
> web developer
> certified advanced coldfusion programmer
> ICGLink, Inc.
> [EMAIL PROTECTED]
> 615.370.1530 x737
> --------------//--------->
> 
> 
> _______________________________________________
> jQuery mailing list
> [email protected]
> http://jquery.com/discuss/
> 

_______________________________________________
jQuery mailing list
[email protected]
http://jquery.com/discuss/

Reply via email to