鼠标拖拽1--JS

鼠标拖拽(1)

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <meta http-equiv="X-UA-Compatible" content="ie=edge">
  <title>Document</title>
  <style>
    * {
      margin: 0;
      padding: 0;
    }

    div {
      width: 100px;
      height: 100px;
      background-color: pink;

      position: absolute;
      left: 0;
      top: 0;
    }
  </style>
</head>
<body>

  <div></div>

  <script>
    /*
      案例 - 拖拽

      问题: 什么时候出现效果 ?
        + 按下去不放(mousedown) : 允许拖拽状态
        + 鼠标抬起来(mouseup) : 允许拖拽状态
        + 鼠标移动(mousemove) : 盒子跟随鼠标移动
      问题: 在什么位置出现效果 ?
        + 按下去 : 盒子内
        + 抬起来 : 盒子内
        + 移动 : document
    */

    // 获取元素
    var ele = document.querySelector('div')

    // 准备一个开关
    var flag = false


    // 1. 绑定鼠标按下事件
    ele.onmousedown = function () {
      console.log('按下')

      // 打开开关
      flag = true
    }

    // 2. 绑定鼠标抬起事件
    ele.addEventListener('mouseup', function () {
      console.log('鼠标抬起')

      // 关闭开关
      flag = false
    })

    // 3. 绑定鼠标移动事件
    document.onmousemove = function (e) {
      // 这里的代码执行, 就会移动
      // 只要这里的代码不执行, 就不会移动了
      if (!flag) return

      var x = e.clientX - ele.offsetWidth / 2
      var y = e.clientY - ele.offsetHeight / 2

      // 赋值
      ele.style.left = x + 'px'
      ele.style.top = y + 'px'
    }




  </script>
</body>
</html>

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值