
Security News
CVE Volume Surges Past 48,000 in 2025 as WordPress Plugin Ecosystem Drives Growth
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.
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
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.

Security News
Socket CEO Feross Aboukhadijeh joins Insecure Agents to discuss CVE remediation and why supply chain attacks require a different security approach.

Security News
Tailwind Labs laid off 75% of its engineering team after revenue dropped 80%, as LLMs redirect traffic away from documentation where developers discover paid products.