1.0.0 • Published 5 years ago

h-drag v1.0.0

Weekly downloads
1
License
ISC
Repository
github
Last release
5 years ago

Drag.js 📬

Drag & Drop

Installation

npm install h-drag
new Drag(element);

drag on box's head, move box

let container = document.getElementById('box');
let head = element.querySelect('.head');

new Drag(container, {
    dragTarget: head, // only drag on head
    events: {
        // onMove(ev, drag) {
        //     if (true) {
        //         return false; // stop move
        //     }
        // }
    }
});
1.0.0

5 years ago