I tried the jQuery fadeIn animation in all browsers and it work good, but not that much on IE. the Alpha png images are so creepy after appending the CSS opacity, but i have an idea and i don't know how to implement it using jQuery.
The idea is to fadeIn the element and when the animation is finished it will automatically remove the opacity property in order to make the picture quality better.
How to do that?
Note: i'm using Animate and not FadeIn.
Thanks
If you set the opacity with jQuery to begin with (as 0):
$(object).css("opacity", 0);
then after you fade it in, you can just:
$(object).fadeIn("slow", function(){
$(object).css("opacity", "");
});
as the above answer didn't work for me in IE <= 8
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With