作业分析:使用js实现鼠标拖拽效果
<!DOCTYPE html>
<html lang="zh">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
#box {
width: 400px;
height: 300px;
background-color: cadetblue;
position: absolute;
}
</style>
</head>
<body>
<div id="box"></div>
<script>
// 获取要操作的标签对象
let box = document.getElementById("box")
// 事件1:鼠标位置 按下 获取offsetX offsetY
box.onmousedown = function (e) {
// 获取鼠标在div上的位置
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 >document.documentElement.clientWidth - box.offsetWidth) {
_left = document.documentElement.clientWidth - box.offsetWidth
}
// 下边界判断
if (_top > document.documentElement.clientHeight - box.offsetHeight) {
_top = document.documentElement.clientHeight - box.offsetHeight
}
// 左边界判断
if (_left < 0) {
_left = 0
}
// 上边界判断
if (_top < 0) {
_top = 0
}
// 给div设置位置
box.style.left = _left + "px"
box.style.top = _top + "px"
}
}
// 事件3:鼠标抬,网页中松开鼠标-停止移动
document.onmouseup = function () {
// 停止移动
document.onmousemove = null
}
</script>
</body>
</html>