vote up 1 vote down star

Hi Guys,

I am getting this weird problem in IE with a CSS Overlay I am applying for a lightbox. Basically, I use fadein and fadeout for jquery - the problem is that everything works fine EXCEPT in IE.

In IE - I get no fadein - rather it just goes straight to opacity background. On fadeout - it removes the "opacity" for < 1 sec second and renders the page a "solid color" before removing the overlay.

Anyone know how to fix this bug ? Its really annoying - I am using all the correct filters etc its just the fadein and fadeout in IE ?

Thx

flag
1  
can you show us your code? – Wbdvlpr Aug 16 at 12:15
Are you using a transparent .png for the overlay or an alpha filter on a solid background colour? IE can't fade transparent .png's properly, so that could be causing your problem. – Pat Aug 16 at 15:08

2 Answers

vote up 2 vote down

I had the same problem in IE8. Setting the opacity of the DIV in JavaScript before I called fadeIn() solved the problem:

$('.overlay').css('filter', 'alpha(opacity=40)');
$('.overlay').fadeIn(500);

This was using just a plain DIV not a transparent PNG.

link|flag
Yet another IE peculiarity. Thanks, that worked great. – Andy McCluggage Oct 6 at 7:53
vote up 0 vote down

Hey here, Also have prob using this junk Browser You can also check when the browser is IE instead of using .animate({opacity:0}) you will have to use .animate({opacity:'hide'})

Hope it helps

Cheers

Jerome

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.