drag-in-parent
v1.0.1
Published
drag element
Downloads
1
Readme
Drag Element in the parent's range;
Installation
npm install drag-in-parent -S
Usage
<div id="parent">
<div class="move"></div>
</div>
import Drag from 'drag-in-parent';
const parent = document.getElementById('parent');
const move = document.querySelector('.move');
new Drag(move, parent);