Side navigation
#8576 closed bug (duplicate)
Opened March 21, 2011 12:53PM UTC
Closed July 12, 2011 07:03PM UTC
Last modified March 14, 2012 04:24PM UTC
PROBLEM WITH FADEIN ON IE8 and PNG
Reported by: | debug@quomodo.com | Owned by: | |
---|---|---|---|
Priority: | low | Milestone: | 1.next |
Component: | effects | Version: | 1.5.1 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
The ticket #6412 (PROBLEM WITH FADEOUT ON IE8) was closed as invalid bug : "You can’t mix opacity and alpha-transparent images in IE unless you apply the opacity directly to an alpha-transparent <img> tag."
OK. But we use fadeOut or fadeTo to fade many divs and then fadeIn to get them normal.
I think it would be better not to use alpha filter when using fadeIn or fadeTo(1). It would be more natural for the programmer if the sequence fadeOut then fadeIn would leave things unchanged. This is not the case since the PNGs get broken in the process.
I made a correction in jQuery.cssHooks.opacity, set function :
var opacity = ( jQuery.isNaN(value) || value == 1 ) ?
"" :
"alpha(opacity=" + value * 100 + ")"
instead of
var opacity = jQuery.isNaN(value) ?
"" :
"alpha(opacity=" + value * 100 + ")"
Thank you.
#8577 is a duplicate of this ticket.