drag-tracker
A simple library for dragging things around. Tracks dragging with touch or mouse.
Last updated 7 years ago by sphinxxxx .
MIT · Repository · Bugs · Original npm · Tarball · package.json
$ gnpm install drag-tracker 
SYNC missed versions from official npm registry.

drag-tracker

A simple library for dragging things around. Tracks dragging with touch or mouse (left button).

Demo

https://rawgit.com/Sphinxxxx/drag-tracker/master/demo/index.html
https://codepen.io/Sphinxxxx/pen/KXedQe

Usage

dragTracker({
  container:          /* The element the user can drag within */,
  selector:           /* CSS selector for elements inside the container that are draggable, or a single HTML element */,
  
  callback:           /* Your code which decides what happens during a drag operation */,
  callbackDragStart:  /* Optional callback when a drag operation is about to start */,
  callbackDragEnd:    /* Optional callback when a drag operation has ended */,
  callbackClick:      /* Optional callback when a draggable element is only clicked, not dragged */,
  propagateEvents:    /* Whether to let mouse/touch events propagate (bubble) after being handled. Usually not wanted in case multiple handlers track the same container */,
  
  roundCoords:  true  /* Whether callback coordinates should be integers */,
  dragOutside:  true  /* Whether the draggable elements can be dragged outside the bounds of the container */,

  /* Whether callback coordinates should be adjusted to suit the dragged element instead of the actual mouse position */
  handleOffset: true (default)  /* Coordinates are the element's center for SVG `<circle>`s and `<ellipse>`s, and the top-left corner for all other elements */,
                'center'        /* Coordinates are always the element's center */
                'topleft'       /* Coordinates are always the element's top-left corner */
                false           /* No adjustment, just use the mouse position */
});

All options are optional. Without a callback, the coordinates are written to console.log.

Current Tags

  • 1.0.0                                ...           latest (7 years ago)

7 Versions

  • 1.0.0                                ...           7 years ago
  • 0.4.5                                ...           7 years ago
  • 0.4.4                                ...           7 years ago
  • 0.4.3                                ...           7 years ago
  • 0.4.2                                ...           7 years ago
  • 0.4.1                                ...           7 years ago
  • 0.4.0                                ...           7 years ago
Maintainers (1)
Downloads
Today 0
This Week 0
This Month 0
Last Day 0
Last Week 0
Last Month 0
Dependencies (0)
None
Dev Dependencies (11)
Dependents (1)

Copyright 2013 - present © cnpmjs.org | Home |