An open API service indexing awesome lists of open source software.

https://github.com/think2011/z-dragify

让元素可拖拽,支持移动端
https://github.com/think2011/z-dragify

Last synced: 10 months ago
JSON representation

让元素可拖拽,支持移动端

Awesome Lists containing this project

README

          

z-Dragify

```js
new Dragify(document.querySelector('#box'),{
target: document.querySelector("#box-title")
})
.on('start', function () {
console.log('s')
})
.on('move', function () {
console.log('m')
})
.on('end', function () {
console.log('e')
})
new Dragify("#box",{
target: "#box-title"
})
```