Suppose I have this animation that start at some point :
myElement.animate({ top: -currentTempImageX, left: -currentTempImageY }, 5000);
that take 5 seconds to animate! Suppose I want to stop it after 2 seconds. Can I have this control?
Thank you
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Yes, you can
Link: http://api.jquery.com/stop/
If you want to stop the animation after 2 seconds then use,