js-draggable
v1.0.5
Published
Simple JS Draggable
Downloads
2
Readme
Simple JS Draggable
Example
window.addEventListener('DOMContentLoaded', function() {
var el = document.querySelector('#elem');
var draggable = new Draggable(el);
draggable
.on('dragstart', function() { console.log('dragstart', this); })
.on('dragend', function() { console.log('dragend', this); })
.on('move', function() { console.log('move', this.diffX, this.diffY); });
});
Credits
Based on TZDragg by thezillion