New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

draggable-elm

Package Overview
Dependencies
Maintainers
0
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

draggable-elm

Makes elements draggable. Vanilla style.

  • 0.1.9
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
0
decreased by-100%
Maintainers
0
Weekly downloads
 
Created
Source

License: MIT Build Status

DEPRECATED

This package has been replaced by a modern alternative.
See draggables on npm.

draggable-elm

Makes elements draggable. Vanilla style.

const draggable = require('draggable-elm');

const myElm = document.getElementById('target');

draggable(myElm, {options});

Options

  • classname - String. A replacement for the draggable classname.
  • axis - String. Restrict movement along a single axis, 'x' or 'y'.
  • grip - Element | String (element selector). A grip handle element to activate draggability upon mouse down. By default you can start dragging from anywhere within the main element.

API

Calling the draggable() function returns a Draggable instance:

const d = draggable(elm);

It has the following methods:

.enable() / .disable()

Toggle draggability. When disabled, the main element gets a 'drag-disabled' classname.

.setGrip(newGrip)

Sets a new grip handle. Argument could be either an HTML Element or an element selector string (e.g. '#my-grip'). See the grip option above.

.on(eventName, callback)

Listen to drag and drop events:

  • 'drag-start' - dragging started, on mouse down.
  • 'dragging' - moving around, on mouse move (with mouse down)
  • 'drag-stop' - dragging stopped, on mouse up.

Event Aliases
For extra convenience, anything that contains start, stop/end/drop or ing will match its respective event.

.moveBy(x, y)

Sets the element relative position. It utilizes css translate(x, y). Does not accumulate. Every call sets the element position relative to its original position and not relative to its current position. This method wan't made to be used during an active dragging, but for one-time positioning.

.destroy()

Kills the Draggable instance for good, unbinds events, releases element references.

Classnames

For styling, the main element will be given the following classes:

  • 'draggable' - from initialization until destruction.
  • 'dragging' - on mouse down, until mouse up.

Any element that is set as a grip handle will be given the classname: 'drag-grip-handle'.

Keywords

FAQs

Package last updated on 12 Dec 2024

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc