<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>
利用js原型继承实现拖拽效果。
最新推荐文章于 2020-05-11 17:53:54 发布