1.0.6 • Published 6 years ago

el-draggable v1.0.6

Weekly downloads
1
License
MIT
Repository
github
Last release
6 years ago

$ npm install el-draggable

const box1 = document.getElementById('box-1')
new ElDraggable(box1, {
    overflow: false,
    containment: containment,
    handler: 'span',
    throttle: 30,
    onStart () {
        box1.style.zIndex = 999
    },
    onDrag (e, position) {
        // TODO
    },
    onEnd () {
        box1.style.zIndex = 'auto'
    }
});
1.0.6

6 years ago

1.0.5

6 years ago

1.0.4

6 years ago

1.0.3

6 years ago

1.0.2

6 years ago

1.0.1

6 years ago

1.0.0

6 years ago