Skip to content

Instantly share code, notes, and snippets.

@elinwibe
Last active December 25, 2017 17:29
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 elinwibe/d5a97bbe250a8d2b282bf3005ed86b2d to your computer and use it in GitHub Desktop.
Save elinwibe/d5a97bbe250a8d2b282bf3005ed86b2d to your computer and use it in GitHub Desktop.
JQuery loop for bouncing element
$(document).ready(function() {
function loop() {
$('#').animate({"top": 0});
$('#').animate({
"top": 20,
}, 1500, function() {
loop();
});
}
loop();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment