效果如下
image.png
代码实现
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>鼠标拖拽</title>
<style>
#box{
width: 200px;
height: 300px;
background-color:tomato;
/* 绝对定位 */
position: absolute;
}
</style>
</head>
<body>
<div id="box"></div>
<script>
// 获取对象
let box = document.getElementById("box")
//事件1:鼠标事件1,按下获取offsetX,offseY
box.onmousedown = function(e){
let ox = e.offsetX
let oy = e.offsetY
// 事件2:鼠标在网页中移动(包含在事件1中)
document.onmousemove = function(e2){
// 获取鼠标在网页中的位置
let cx = e2.clientX
let cy = e2.clientY
// 计算left和top
let _left = cx - ox
let _top = cy - oy
// 边界判断
// 左边界
if(_left <0){
_left = 0
}
// 上边界
if(_top <0){
_top = 0
}
// 右边界
// document.documentElement.clientWidth 获取网页的宽度
// box.offsetWidth 获取div的宽度
if(_left > document.documentElement.clientWidth - box.offsetWidth){
_left = document.documentElement.clientWidth - box.offsetWidth
}
// 下边界
// document.documentElement.clientHeight 获取网页的高度
// box.offsetHeight 获取div的高度
if(_top > document.documentElement.clientHeight - box.offsetHeight){
_top = document.documentElement.clientHeight - box.offsetHeight
}
//给div设置位置
box.style.left = _left + "px"
box.style.top = _top + "px"
}
}
// 事件3:鼠标松开
document.onmouseup = function(){
// 停止移动
document.onmousemove = null
}
</script>
</body>
</html>