Skip to content

Instantly share code, notes, and snippets.

@gavinblair
Created November 24, 2011 20:14
Show Gist options
  • Save gavinblair/1392191 to your computer and use it in GitHub Desktop.
Save gavinblair/1392191 to your computer and use it in GitHub Desktop.
jQuery Looping Animation
setInterval(function(){
$("#c1").animate({ left: "500px" }, 4000, function(){
$(this).show();
$(this).animate({ left: "-500px" }, 6000);
});
}, 10000);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment