首页 > 编程语言 > 详细

Javascript面向对象拖拽

时间:2014-08-05 03:01:58      阅读:304      评论:0      收藏:0      [点我收藏+]
function Drag(id)
{    
    var _this=this;
    this.disX=0;
    this.disY=0;    
    this.oDiv=document.getElementById(id);
    this.oDiv.onmousedown=function(e)
    {
        _this.fnDown(e);
    }
}

Drag.prototype.fnDown=function(e)
{    
    var _this=this;
    var e=e||event;
    this.disX=e.pageX-this.oDiv.offsetLeft;
    this.disY=e.pageY-this.oDiv.offsetTop;
    document.onmousemove=function(e)
    {
        _this.fnMove(e);
    }
    document.onmouseup=function()
    {
        _this.fnUp();
    }
}

Drag.prototype.fnMove=function(e)
{
    var e=e||event;
    this.oDiv.style.left=e.pageX-this.disX+‘px‘;
    this.oDiv.style.top=e.pageY-this.disY+‘px‘;
}

Drag.prototype.fnUp=function()
{
    document.onmousemove=null;
    document.onmouseup=null;
}

function Drag2(id)
{
    Drag.call(this,id);
}

for(var i in Drag.prototype)
{
    Drag2.prototype[i]=Drag.prototype[i];
}

window.onload=function(){
    var a = new Drag(‘div1‘);
    var b = new Drag2(‘div2‘);
}

 

Javascript面向对象拖拽,布布扣,bubuko.com

Javascript面向对象拖拽

原文:http://www.cnblogs.com/anson0415/p/3891338.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!