I had some problems with animations with jQuery 1.6. I solved it with jQuery 1.5.
In my project I used setInterval()
to make custom logo slider. Animations fired up instantly (not simultaneously) two by two. Everything goes smoothly when I am on the page, but when I went on other tab and comeback (after minute, two or so) to my page project everything goes crazy...
Ok, so I got one answer to use Queue()
. Can I achieve same thing with that method?
I have book Manning jQuery in Action and there is nothing on instantly fired up animations with Queue()
.
To quote some of that answer:
Because of the nature of requestAnimationFrame(), you should never queue animations using a setInterval or setTimeout loop.
In general setInterval == BAD and setTimeout == GOOD for animations.
setInterval will try play catchup, as nnnnnn stated:
You best method for looping animate() is by calling recursively, for example:
Notice how the myTimeout is held outside the scope of myAnnimation allowing the ability to stop the animation
Which you could hook up to the window.unload event.