1.0.0 • Published 5 years ago

reactlydnd v1.0.0

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

dragin

拖拽

在项目中安装

npm install jo-dragin --save
# 或
yarn add jo-dragin

使用

import Dragin from 'jo-dragin';

new Dragin(docment.querySelector('#box'), {
  clone: true,
  start(x, y) {
    console.log('start', x, y);
  },
  move(x, y) {
    console.log('move', x, y);
  },
  end() {
    console.log('end');
  }
})