javascript - I want Pause and Resume for this jquery animation -


$(document).ready(function() {     settimeout("wave()", 0); });  function wave(){ $("#wave1")     .animate({left:"100px", top:"400px" },2000)      .animate({left:"200px", top:"0px" },2000)      .animate({left:"300px", top:"400px" },2000)      .animate({left:"400px", top:"0px" },2000)      .animate({left:"500px", top:"400px" },2000)      .animate({left:"600px", top:"0px" },2000)      .animate({left:"500px", top:"400px" },2000)      .animate({left:"400px", top:"0px" },2000)      settimeout("wave()") }  

is there way somehow pause/resume animation in jquery?

try plugin http://plugins.jquery.com/project/pause-resume-animation


Comments

Popular posts from this blog

apache - Add omitted ? to URLs -

redirect - bbPress Forum - rewrite to wwww.mysite prohibits login -

php - How can I stop spam on my custom forum/blog? -