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.

link|improve this question

feedback

1 Answer

up vote 0 down vote accepted

Either:

function delta(start, end) {
    var current = new Date().getTime();
    var duration = end - start;
    var difference = current - start;

    var progress = (difference / duration);
    return progress;
}

or:

function delta(start, end) {
    var current = new Date().getTime();
    var duration = end - start;
    var difference = end - current;

    var progress = 1 - (difference / duration);
    return progress;
}

This will give you a progress starting at 0.

link|improve this answer
Ah so easy.. got a little bit confused, thanks. :) – elias94xx Nov 16 '11 at 11:16
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.