Lines Matching refs:time
16 * velocity of the flick, along with distance and time information.
62 * @param fn {function} The method the event invokes. It receives an event facade with an e.flick object containing the flick related properties: e.flick.time, e.flick.distance, e.flick.velocity and e.flick.axis, e.flick.start.
151 time : new Date().getTime()
173 start.flick.time = new Date().getTime();
184 time,
220 startTime = start.flick.time;
222 time = endTime - startTime;
236 velocity = (time !== 0) ? distance/time : 0;
242 time:time,