function delta(start, end) {
var current = new Date().getTime();
var duration = end - start;
var difference = end - current;
var progress = (difference / duration);
return progress;
}
The output starts at 0.9x and ends with 0.0x
I want it to start with 0.0 and end with 1.0, how do I do that ? :| I've read a few documentations on js animations with delta and stuff, but I still haven't quite figured out how to create a useful function for animations.