拖拽


License
MIT
Install
npm install jo-dragin@0.3.3

Documentation

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');
  }
})