復制代碼 代碼如下://************ " /> 在线欧美色,欧美日韩高清在线一区,国产在线一

中文字幕日韩一区二区_国产一区二区av_国产毛片av_久久久久国产一区_色婷婷电影_国产一区二区精品

一個很酷的拖動層的js類,兼容IE及Firefox

自己優化修改了網上的一個JS拖動類,增加了拖動時顯示半透明的特效。 http://www.jb51.NET/article/16122.htm
注意,本文類中的Cminfo類請 查看:
http://www.jb51.NET/article/18760.htm

復制代碼 代碼如下:
//*********************************移動層 函數 開始*******************************************
//生成拖動層很簡單,只需要(參數之一如果是數組表示局部拖動,arr[0]表示拖動層,arr[1]表示整體)
//new divDrag(['test'], [getObject('test31'),getObject('test3')], getObject('test1') ,getObject('test2') ,[getObject('test41'),getObject('test4')]);
//記得有拖動屬性的層position:absolute;
Array.prototype.extend = function(C){for(var B=0,A=C.length;B<A;B++){this.push(C[B]);}return this;}
function divDrag()
{
    var A,B,gCn;
    var zIndex = 1;
    this.dragStart = function(e)
    {
        e = e||window.event;
        if((e.which && (e.which!=1))||(e.button && (e.button!=1))){return;}
        var pos = this.gPos;
        gCn = this.parent||this;
        if(document.defaultView)
        {
            _top = document.defaultView.getComputedStyle(gCn,null).getPropertyValue("top");
            _left = document.defaultView.getComputedStyle(gCn,null).getPropertyValue("left");
        }
        else
        {
            if(gCn.currentStyle)
            {
                _top = gCn.currentStyle["top"];
                _left = gCn.currentStyle["left"];
            }
        }
        pos.ox = (e.pageX||(e.clientX+document.documentElement.scrollLeft))-parseInt(_left);
        pos.oy = (e.pageY||(e.clientY+document.documentElement.scrollTop))-parseInt(_top);
        if(!!A)
        {
            if(document.removeEventListener)
            {
                document.removeEventListener("mousemove",A,false);
                document.removeEventListener("mouseup",B,false);
            }
            else
            {
                document.detachEvent("onmousemove",A);
                document.detachEvent("onmouseup",B);
            }
        }
        A = this.dragMove.create(this);
        B = this.dragEnd.create(this);
        if(document.addEventListener)
        {
            document.addEventListener("mousemove",A,false);
            document.addEventListener("mouseup",B,false);
        }
        else
        {
            document.attachEvent("onmousemove",A);
            document.attachEvent("onmouseup",B);
        }
        gCn.style.zIndex = (++zIndex);
    }
    this.dragMove = function(e)
    {
        e = e||window.event;
        var pos = this.gPos;
        gCn = this.parent||this;
        gCn.style.top = (e.pageY||(e.clientY+document.documentElement.scrollTop))-parseInt(pos.oy)+'px';
        gCn.style.left = (e.pageX||(e.clientX+document.documentElement.scrollLeft))-parseInt(pos.ox)+'px';
        try{if(CMInfo.Bs_Name=='IE'){gCn.style.filter = "alpha(opacity=70)";}else{gCn.style.opacity = "0.7";}}catch(e){}
        this.stop(e);
    }
    this.dragEnd = function(e)
    {
        var pos = this.gPos;
        e = e||window.event;
        if((e.which && (e.which!=1))||(e.button && (e.button!=1))){return};
        gCn = this.parent||this;
        if(!!(this.parent)){this.style.backgroundColor = pos.color;}
        try{if(CMInfo.Bs_Name=='IE'){gCn.style.filter = "alpha(opacity=100)";}else{gCn.style.opacity = 1;}}catch(e){}
        if(document.removeEventListener)
        {
            document.removeEventListener("mousemove",A,false);
            document.removeEventListener("mouseup",B,false);
        }
        else
        {
            document.detachEvent("onmousemove",A);
            document.detachEvent("onmouseup",B);
        }
        A = null;
        B = null;
        gCn.style.zIndex = (++zIndex);
        this.stop(e);
    }
    this.shiftColor = function()
    {
        this.style.backgroundColor="#EEEEEE";                                    
    }
    this.position = function (e)
    {
        var t=e.offsetTop;
        var l=e.offsetLeft;
        while(e=e.offsetParent)
        {
            t += e.offsetTop;
            l += e.offsetLeft;
        }
        return {x:l,y:t,ox:0,oy:0,color:null}
    }
    this.stop = function(e)
    {
        if(e.stopPropagation){e.stopPropagation();}else{e.cancelBubble=true;}
        if(e.preventDefault){e.preventDefault();}else{e.returnValue=false;}
    }
    this.create = function(bind)
    {
        var B = this;
        var A = bind;
        return function(e){return B.apply(A,[e]);}
    }
    this.dragStart.create = this.create;
    this.dragMove.create = this.create;
    this.dragEnd.create = this.create;
    this.shiftColor.create = this.create;
    this.initialize = function()
    {
        for(var A=0,B=arguments.length;A<B;A++)
        {
            C=arguments[A];
            if(!(C.push)){C = [C];}
            gC = (typeof(C[0])=='object')?C[0]:(typeof(C[0])=='string'?getObject(C[0]):null);
            if(!gC){continue};
            gC.gPos = this.position(gC);
            gC.dragMove = this.dragMove;
            gC.dragEnd = this.dragEnd;
            gC.stop = this.stop;
            if(!!C[1])
            {
                gC.parent = C[1];
                gC.gPos.color = gC.style.backgroundColor;
            }
            if(gC.addEventListener)
            {
                gC.addEventListener("mousedown",this.dragStart.create(gC),false);
                if(!!C[1]){gC.addEventListener("mousedown",this.shiftColor.create(gC),false);    }
            }
            else
            {
                gC.attachEvent("onmousedown",this.dragStart.create(gC));
                if(!!C[1]){gC.attachEvent("onmousedown",this.shiftColor.create(gC));}
            }
        }
    }
    this.initialize.apply(this,arguments);
}
//*********************************移動層 函數 結束*******************************************

JavaScript技術一個很酷的拖動層的js類,兼容IE及Firefox,轉載需保留來源!

鄭重聲明:本文版權歸原作者所有,轉載文章僅為傳播更多信息之目的,如作者信息標記有誤,請第一時間聯系我們修改或刪除,多謝。

主站蜘蛛池模板: 国产视频福利 | 久久精品色欧美aⅴ一区二区 | 一区二区三区中文字幕 | 亚洲 欧美 精品 | 九九热精品视频 | 在线播放中文字幕 | 国产在线高清 | 日韩三| 欧美一区二区 | 99视频在线看 | 超碰人人人 | 国产一级毛片精品完整视频版 | 国产福利在线视频 | 成人亚洲网站 | 一级毛片高清 | 欧美久久影院 | 亚洲国产精品视频一区 | 免费黄色片在线观看 | 91在线电影 | 国产精品久久久久不卡 | 爱综合 | 国产高清一区二区 | 二区在线视频 | 亚洲草草视频 | 成人乱人乱一区二区三区软件 | 中文字幕亚洲欧美 | 一级全黄少妇性色生活免费看 | 亚洲精品视频在线播放 | 伊人狠狠| 成人福利在线 | 天天插天天操 | 福利视频1000 | 国产精品一区在线观看 | 观看av| 国产一区久久久 | 欧美成人激情 | 亚洲成人午夜电影 | 亚洲一区在线日韩在线深爱 | 精品无码久久久久久国产 | 91影院在线观看 | 欧美一区二区三区,视频 |