jquery animate and image resize flickering
Posted
by denadai2
on Stack Overflow
See other posts from Stack Overflow
or by denadai2
Published on 2010-04-12T22:27:41Z
Indexed on
2010/04/12
22:33 UTC
Read the original article
Hit count: 554
Hi, i've a problem with a resize effect that i've done in http://www.mcz-scenario.it. When you click on a language, you can see the "background" image transferring into a certain position of the screen.
this is the image:
<img id="lago" src="http://www.mcz-scenario.it/images/lago.jpg" height="1070" width="1600" alt="lago" />
And this is the "resize" effect
$("#lago").animate({
height: 148,
width: 264,
top: endPosition2.top+42,
left: endPosition2.left+350+26}, 4000);
Now... I see some flickering running this animation in Firefox. How can i handle this? Is it normal because the image is too large? Help me please :(
THX
© Stack Overflow or respective owner