Skip to main content

Bug Tracker

Side navigation

#8577 closed bug (duplicate)

Opened March 21, 2011 01:32PM UTC

Closed March 24, 2011 09:48PM UTC

Last modified March 24, 2011 09:48PM UTC

PROBLEM WITH FADEIN ON IE8 and PNG

Reported by: debug@quomodo.com Owned by:
Priority: undecided Milestone: 1.next
Component: unfiled 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 (2)

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

resolution: → duplicate
status: newclosed

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

Duplicate of #8576.