<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Document</title>
<style>
div{width: 100px;height: 100px;position: absolute;left:0;}
#box1{background:red;top:0;}
#box2{background:blue;top:130px;}
</style>
</head>
<body>
<div id="box1"></div>
<div id="box2"></div>
</body>
<script>
function Drag(ele){
this.ele = ele;
this.addEvent();
}
Drag.prototype.addEvent = function(){
var that = this;
this.ele.onmousedown = function(eve){
that.downE = eve || window.event;
document.onmousemove = function(eve){
that.moveE = eve || window.event;
that.move();
}
document.onmouseup = function(){
that.up();
}
}
}
Drag.prototype.move = function(){
this.ele.style.left = this.moveE.clientX - this.downE.offsetX + "px";
this.ele.style.top = this.moveE.clientY - this.downE.offsetY + "px";
}
Drag.prototype.up = function(){
document.onmousemove = null;
}
// 虽然都是拖拽,但是一个有边界限定,另一个没有边界限定
function SmallDrag(ele){
Drag.call(this, ele)
}
for(var i in Drag.prototype){
SmallDrag.prototype[i] = Drag.prototype[i];
}
SmallDrag.prototype.move = function(){
let l = this.moveE.clientX - this.downE.offsetX;
let t = this.moveE.clientY - this.downE.offsetY;
if(l<0) l=0;
if(t<0) t=0;
this.ele.style.left = l + "px";
this.ele.style.top = t + "px";
}
var obox1 = document.getElementById("box1");
var obox2 = document.getElementById("box2");
new Drag(obox1);
new SmallDrag(obox2);
// 当有多个相似程序或相似对象,具有一些类似功能时,可以将公共功能做成一个总的父级
// 所有细节部分,在继承公共对象之后,另做修改
</script>
</html>
js拖拽
最新推荐文章于 2024-11-04 16:17:23 发布