1.1.1 • Published 5 years ago

quickdrag v1.1.1

Weekly downloads
2
License
MIT
Repository
github
Last release
5 years ago

quickdrag

A tiny npm module to drag html elements on a page. This script was quickly made for developement purpose (do not use in production).

If you wish to use in production, please contact me for a quick collaboration towards making this script more complex.

This module will only work for elements not embedded in shadow doms.

installation

yarn add quickdrag -D

use

import the module in your document :

<script type=module src=./node_modules/quickdrag/quickdrag.js></script>

Then tag the elements you want to drag :

<div class="draggable">...</div>

The imported module will automatically process the [class^=draggable] elements. Load the page and now you can drag the element holding a click.

If you wish to register a draggable element manually :

<script type=module>
  import {registerForDraggable} from './node_modules/quickdrag/quickdrag.js';
  registerForDraggable(document.getElementById('dragMe'));
</script>
1.1.1

5 years ago

1.0.0

5 years ago