http://stephband.info/jquery.event.move/
Move Events
-
MoveStart
-
Fired following Touchmove or MouseMove, when the touch (or mouse) crosses a threshold distance from the position of the MO Usedown or Touchstart.
-
Move
-
Fired on every animation frame where a touchmove or MouseMove have changed position.
-
MoveEnd
-
fired following MouseUp or Touchend, after the last move event, and in the case of touch events when the finger tha T started the move has been lifted.
Move Event objects is augmented with the properties:
E.pagex,e.pagey
A pointer to the current page coordinates.
E.startx,e.starty
A pointer to the page coordinates, once in MoveStart.
E.distx,e.disty
The distance from the MoveStart pointer moves.
E.deltax,e.deltay
The distance pointer has shifted since the last move event.
E.velocityx,e.velocityy
Speed pixels/MS, average over the past few events.
JQuery.event.move