Hi, I'm having a design issue using jQuery FadeIn on Internet Explorer:
I have a div which animates from the bottom to the center of the page, I needed to implement the effect that the div suddenly fades in and animates to the center of the page. I got that effect using jQuery FadeIn, but I lose the transparency of the div just on Internet Explorer (7, 8), on Firefox it works fine.
This is the CSS code I'm using to give the transparency to the div (this is a class applyed to the div)
display:none;
filter:alpha(opacity=90);
-moz-opacity: 0.9;
opacity: 0.9;
Then, via javascript I made the div appears (fade):
$(Popup).fadeIn(700);
$(Popup).css({
"filter": "alpha(opacity=90)",
"-moz-opacity": "0.9",
"opacity": "0.9" });
//popup falling
$(Popup).animate({
marginTop: '+=' + (windowHeight / 2 - popupHeight / 2) + 'px'
}, 1000 );
As you can see, I tried re-asigning the CSS properties to the div, but it doesn't works either.
Thanks in advance.