Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width">
  <title>JS Bin</title>
</head>
<body>
  <div id="box">
    <div id="ball"></div>
  </div>
</body>
</html>
 
body {
  margin: 0;
}
#box {
  margin: 20px;
  width: 200px;
  height: 300px;
  border: 10px solid;
  box-sizing: border-box;
  position: relative;
}
#ball {
  border: 2px solid blue;
  width: 20px;
  height: 20px;
  border-radius: 10px;
  background-color: red;
  box-sizing: border-box;
  position: absolute;
  top: 0px;
  left: 0px;
}
 
const box = document.getElementById('box');
const ball = document.getElementById('ball');
let dragging = false;
let currentX, currentY;
const maxLeft = box.clientWidth - ball.offsetWidth;
const maxTop = box.clientHeight - ball.offsetHeight;
console.dir(box)
ball.addEventListener('mousedown', (e) => {
  // 记录坐标
  dragging = true;
  currentX = e.clientX;
  currentY = e.clientY;
});
document.body.addEventListener('mousemove', (e) => {
  if(dragging === false) return;
  // 计算偏移
  const deltaX = e.clientX - currentX;
  const deltaY = e.clientY - currentY;
  const currentLeft = parseFloat(ball.style.left || '0');
  const currentTop = parseFloat(ball.style.top || '0');
  let left = currentLeft + deltaX;
  let top = currentTop + deltaY;
  // 记录新坐标
  currentX = e.clientX;
  currentY = e.clientY;
  // 边界处理
  if(left > maxLeft) {
    left = maxLeft;
  } else if(left < 0) {
    left = 0;
  }
  if(top > maxTop) {
    top = maxTop;
  } else if(top < 0) {
    top = 0;
  }
  if(e.clientX < box.offsetLeft) {
    currentX = box.offsetLeft;
  } else if(e.clientX > box.offsetLeft + box.clientWidth + box.clientLeft) {
    currentX = box.offsetLeft + box.clientWidth + box.clientLeft;
  }
  if(e.clientY < box.offsetTop) {
    currentY = box.offsetTop;
  } else if(e.clientY > box.offsetTop + box.clientHeight + box.clientTop) {
    currentY = box.offsetTop + box.clientHeight + box.clientTop;
  }
  // 更改ball坐标
  ball.style.left = left + 'px';
  ball.style.top = top + 'px';
  
})
document.body.addEventListener('mouseup', () => {
  // 停止移动和记录
  dragging = false;
})
Output 300px

You can jump to the latest bin by adding /latest to your URL

Dismiss x
public
Bin info
anonymouspro
0viewers