提交 bd794558 authored 作者: 钟是志's avatar 钟是志

拖拽增加注释

上级 0f2df138
/**
* 钟是志
* 2020年5月28日 18:15:56
* 通过绑定3个事件 鼠标down 鼠标move 鼠标up 实现拖到
* 在down 的时候 注册 哪个配置项被点击
* 在move 的时候 计算偏移量 让鼠标的偏移量 和 配置项dom的偏移量一致
* 在up 的时候 更新元素dom的新位置到props
* */
import React, { Fragment, Component } from 'react';
import styles from './index.less';
......@@ -15,8 +24,6 @@ export default class Index extends Component {
},
};
}
componentDidMount() {
}
handleOnMouseDown = (e, id) => {
const div = document.getElementById(id);
......
/**
* 钟是志
* 2020年5月28日 18:15:56
* 通过绑定3个事件 鼠标down 鼠标move 鼠标up 实现拖到
* 在down 的时候 注册 哪个配置项被点击
* 在move 的时候 计算偏移量 让鼠标的偏移量 和 配置项dom的偏移量一致
* 在up 的时候 更新元素dom的新位置到props
* */
import React, { Component, Fragment } from 'react';
import { queryConfig } from '../services';
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论