Skip to content

Instantly share code, notes, and snippets.

@jshaw
Created July 24, 2012 16:12
Embed
What would you like to do?
Animation Bounce an Percent Complete Marker
// Requires jQuery & jQuery UI
$('<ELEMENT>').animate({
bottom: <VAR CalculatedPercentage>+'%',
duration: <VAR duration>
},function(){
$(this).effect("bounce", { direction:'down', times:4 }, 600);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment