Skip to main content

Bug Tracker

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.

Attachments (0)
Change History (4)

Changed March 24, 2011 09:48PM UTC by dmethvin comment:1

#8577 is a duplicate of this ticket.

Changed March 30, 2011 07:18PM UTC by dmethvin comment:2

component: unfiledeffects
priority: undecidedlow
status: newopen

Changed July 12, 2011 07:03PM UTC by ajpiano comment:3

resolution: → duplicate
status: openclosed

Changed July 12, 2011 07:03PM UTC by ajpiano comment:4

Duplicate of #6652.