Skip to content

Instantly share code, notes, and snippets.

@sct
Created May 3, 2013 21:24
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 sct/5514312 to your computer and use it in GitHub Desktop.
Save sct/5514312 to your computer and use it in GitHub Desktop.
Floating creeper
$(function() {
function creeperFloat() {
$('.creeper').animate({
left: '+=35',
top: '+=25'
}, 4500).animate({
left: '-=35',
top: '-=25'
}, 4500, creeperFloat);
}
creeperFloat();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment