<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<style>
#box{
width: 200px;
height: 200px;
background-image: url("./images/1729137420967.jpg");
position: absolute;
background-size: 100% 100%;
}
</style>
<body>
<div id="box"></div>
<script>
let box = document.querySelector("#box");
box.onmousedown = function (e) {
let ox = e.offsetX;
let oy = e.offsetY;
document.onmousemove = function (e2) {
let cx = e2.clientX;
let cy = e2.clientY;
let dx = cx - ox;
let dy = cy - oy;
box.style.left = dx + "px";
box.style.top = dy + "px";
}
}
document.onmouseup = function () {
document.onmousemove = null;
}
</script>
</body>
</html>

屏幕截图 2025-04-22 230337.png

屏幕截图 2025-04-22 230306.png