Answer the question
In order to leave comments, you need to log in
How to make continuous and smooth animation with jQuery in backgroundPosition?
Hello, tell me please.
There is a code:
$('.test').animate({ backgroundPosition: '-220px ' + posY }, 'linear', function () { $(this).css({ 'backgroundPosition': '-220px 0px'}) }).delay().<br>
animate({ backgroundPosition: '-220px ' + posY }, 'linear', function () { $(this).css({ 'backgroundPosition': '-220px 0px'}) }).delay().<br>
animate({ backgroundPosition: '-220px ' + posY }, 'linear', function () { $(this).css({ 'backgroundPosition': '0px 0px'}) });<br>
Answer the question
In order to leave comments, you need to log in
As I understand it, your background is "reset". The delay is caused by page redrawing.
Therefore, you can:
— Use a non-linear function.
— Make a seamless sprite and use one animation instead of three.
— Shift coordinates taking into account the delay.
Maybe try playing with delays?
Animation length 400ms, start next after 390ms
according to your code it is difficult to understand what result you need share an example on jsfiddle.net
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question