I'm trying to use animate()
to change the height and opacity of a div
. The div has an image background in CSS. It works fine on Firefox and Safari, but when I test it in IE the background is being removed. This is my code:
if (jQuery.support.opacity) {
jQuery('#list_box').animate({opacity: '1',height: '300px',top: newTop},{duration: 300});
} else {
jQuery('#list_box').animate({filter: 'alpha(opacity=100)',height: '300px',top: newTop},{duration: 300});
}
How can I fix this problem?
Same problem with IE8. Adding "display: inline-block" to .hover2 in fixed the problem.
I found a solution that worked for me:
position:inline-block;
This works for fading text opacity, I haven't tried it with a CSS background image. Maybe it helps anyway.found at http://www.devcomments.com/IE-8-fadeTo-problem-with-inline-elements-to65024.htm
I solved it with adding an opaque background to the animated element:
CSS:
JS:
Works for IE7-8
Hope this will help someone ;)
Ok this might help a little bit, I found a solution in this site about the exact problem http://blog.bmn.name/2008/03/jquery-fadeinfadeout-ie-cleartype-glitch/
in conclusion, the general problem is the opacity filter on IE, in your specific case there is not much you can do, thought
but in case you fade in and out, the prevent the problem with a png background image you just have to remove the filter attribute the jQuery function added whe the fx ends. Just use a callback function, something like that would do it:
in case you selectors returns more than one, use the each function, something like this:
You can use
fadeTo
to accomplish what you want to do:fadeIn
andfadeOut
do transitions from 0 to 100%, but the above will allow you to fade to an arbitrary opacity.(http://docs.jquery.com/Effects/fadeTo#speedopacitycallback)
Very (very) late with the answer, but as this is at the top of Google when I looked for help with a jquery v animate issue in IE8 I thought i'd post it here.
My problem was connected to the hasLayout bug in IE, and adding "display: inline-block" to the element to be faded fixed the problem.