
Security News
The Next Open Source Security Race: Triage at Machine Speed
Claude Opus 4.6 has uncovered more than 500 open source vulnerabilities, raising new considerations for disclosure, triage, and patching at scale.
Touch enabled implementation of WHATWG drag and drop (aka HTML drag and drop) mechanism.
new Pan(targetElement);
This will give targetElement a draggable property and set an event listener for dragstart, drag and dragend; it will also set an event listener for touchstart, touchmove and touchend. These events are re-emitted through the eventEmitter and allow you to animate handle in response to drag/touch events.
HTML drag and drop spec does not define a method for styling or animating the handle in response to the drag event, e.g. there is no way to control element opacity while dragging.
The following mechanism is used to get the full control of the visual feedback:
In the event of dragstart and touchstart:
In the event of drag and touchmove:
In the event of dragend and touchend:
As a result, you have full control over the visual feedback.
There is a reference to the handle element in the Event Object.
To make element draggable:
var targetElement,
pan;
targetElement = document.querySelector('#target-element');
pan new Pan(targetElement);
pan.eventEmitter.on('start', function (e) {
console.log(e);
});
pan.eventEmitter.on('move', function (e) {
e.handle.style.transform = 'translate(' + e.offsetX + 'px,' + e.offsetY + 'px)';
});
pan.eventEmitter.on('end', function (e) {
console.log(e);
});
This will make the #target-element element draggable using CSS3 transformations.
The result of Pan() is an object with a single property (eventEmitter) used to emit events.
The code for all of the examples is in the examples folder.
Raise an issue if you are missing an example.
You can listen for individual drag and touch DOM events:
targetElement.addEventListener('dragstart', dragStart);
targetElement.addEventListener('drag', dragMove);
targetElement.addEventListener('dragend', dragEnd);
targetElement.addEventListener('touchstart', dragStart);
targetElement.addEventListener('touchmove', dragMove);
targetElement.addEventListener('touchend', dragEnd);
You can use the eventEmitter object that will normalize drag and touch events to:
pan.eventEmitter.on('start', dragStart);
pan.eventEmitter.on('move', dragMove);
pan.eventEmitter.on('end', dragEnd);
The listener of the eventEmitter is passed a single eventObject object.
pan.eventEmitter.on('move', function (eventObject) {
});
| Name | Value |
|---|---|
offsetX | Distance from the starting point on X axis. |
offsetY | Distance from the starting point on Y axis. |
target | Target that received the event. |
handle | Element used to represent the target element when dragging. |
type | Event name. |
Using Bower:
bower install pan
Using NPM:
npm install pan-drag
The old-fashioned way, download either of the following files:
FAQs
Touch enabled implementation of WHATWG drag and drop mechanism.
We found that pan demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Claude Opus 4.6 has uncovered more than 500 open source vulnerabilities, raising new considerations for disclosure, triage, and patching at scale.

Research
/Security News
Malicious dYdX client packages were published to npm and PyPI after a maintainer compromise, enabling wallet credential theft and remote code execution.

Security News
gem.coop is testing registry-level dependency cooldowns to limit exposure during the brief window when malicious gems are most likely to spread.