原生javascript实现鼠标拖拽

<div id="app">
      <div class="box"></div>
      safsafa
    </div>
<style>
      * {
        padding: 0;
        margin: 0;
      }
      .box {
        width: 100px;
        height: 100px;
        position: absolute;
        background: red;
      }
</style>
let box = document.querySelector(".box");
      box.onmousedown = function (e) {
        let x = e.clientX - this.offsetLeft;
        let y = e.clientY - this.offsetTop;
        document.onmousemove = function (e) {
          let leftX = e.clientX - x;
          let topY = e.clientY - y;
          
          // 不出下边与右边试图区域
          let maxLeft = innerWidth - box.offsetWidth;
          let maxTop = innerHeight - box.offsetHeight;

          // 限制拖拽不超出屏幕区域
          if (leftX < 0) {
            leftX = 0;
          }
          // leftX=leftX<0?0:leftX;
          if (topY < 0) {
            topY = 0;
          }
          // topY=topY<0?0:topY;
          
          if (leftX > maxLeft) {
            leftX = maxLeft;
          }
          if (topY > maxTop) {
            topY = maxTop;
          }

          // 设置拖拽移动
          box.style.left = leftX + "px";
          box.style.top = topY + "px";
        };
        // 清除事件
        document.onmouseup = function () {
          box.onmouseup = null;
          document.onmousemove = null;
        };
        return false;
      };
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值