Skip to content

Instantly share code, notes, and snippets.

@edwinwebb
Created March 13, 2013 08:51
Show Gist options
  • Save edwinwebb/5150351 to your computer and use it in GitHub Desktop.
Save edwinwebb/5150351 to your computer and use it in GitHub Desktop.
Animate numbers with JQuery animate. Useful for animating updates to numbers.
jQuery.Animation(
{'test' : 0}, // 'element'
{'test' : 100}, // match props in 'element'
{
duration:100, //standard options
step : function(a) {
console.log(a); //step
}
}
);
/*
LOG :
4.7586473766990265
16.934406733817408
36.05044469803854
56.266661678215215
76.79133974894982
91.3540287137281
99.11436253643443
100
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment