Skip to content

Instantly share code, notes, and snippets.

@Nully
Created February 3, 2012 00:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Nully/1726647 to your computer and use it in GitHub Desktop.
Save Nully/1726647 to your computer and use it in GitHub Desktop.
いもむし右にいくよ!
setInterval(function(){
var imo = $("#imomushi");
imo.animate({
width: imo.width() + 10,
right: imo.width()
}, function(){
imo.animate({
width: imo.width() - 10,
left: parseInt(imo.css("left").replace("px")) - 10
})
});
}, 2000);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment