月球大数据地理空间分析展示平台-【前端】-月球2期前端
Surpriseplus
2023-07-11 fd4137f911011f741f71f962ecf59ba4af19ca06
src/utils/drag.ts
@@ -1,9 +1,16 @@
const drag = {
  mounted(el: HTMLElement) {
    let moveEl = el as HTMLElement;
    const mouseDown = (e: MouseEvent) => {
      //鼠标点击物体那一刻相对于物体左侧边框的距离=点击时的位置相对于浏览器最左边的距离-物体左边框相对于浏览器最左边的距离
      // console.log(e.clientX, e.clientY, "-----起始", el.offsetLeft);
      // var value = sessionStorage.getItem("setDrag");
      // if (value) return;
      if ((window as any).dragging) {
        (window as any).dragging == true;
        return;
      }
      let X = e.clientX - el.offsetLeft;
      let Y = e.clientY - el.offsetTop;
      const move = (e: MouseEvent) => {