国产一级a片免费看高清,亚洲熟女中文字幕在线视频,黄三级高清在线播放,免费黄色视频在线看

打開(kāi)APP
userphoto
未登錄

開(kāi)通VIP,暢享免費(fèi)電子書(shū)等14項(xiàng)超值服

開(kāi)通VIP
javascript之DIV拖動(dòng)類(lèi) 支持在FF下拖動(dòng),調(diào)用簡(jiǎn)單

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "<html xmlns="<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Div Move Temp</title>
<style>
#InfoKuang {
    position:absolute;
    width:130px;
    height:85px;
    z-index:1;
    filter:alpha(Opacity=60,style=0);
    opacity:0.6;
    padding: 3px;
    border: 1px dashed #000000;
    z-index:5000;
    bottom:31px;
                font-size:9pt;
                
    
    
}
#InfoKuang ul {
    margin: 1px;
    padding: 0px;
    border-top-width: 1px;
    border-right-width: 1px;
    border-bottom-width: 1px;
    border-left-width: 1px;
    border-top-style: none;
    border-right-style: none;
    border-bottom-style: solid;
    border-left-style: none;
    border-top-color: #000000;
    border-right-color: #000000;
    border-bottom-color: #000000;
    border-left-color: #000000;
    color: #000000;
    background-color:#0faead;
}
#InfoKuang li {
    height:24px;
    padding: 1px;
    line-height: 24px;
}
</style>
</head>
<body>
<div id="InfoKuang" onmousedown="MyMove.Move('InfoKuang',event,1)">
<span style="cursor:move;">點(diǎn)我調(diào)用 拖動(dòng)窗口</span>
    <ul>
        <li>
        
        </li>
    </ul>
    <ul>
        <li>
        顯示窗口
        </li>
    </ul>
    <ul>
        <li>
        最大化窗口
        </li>
    </ul>
</div>
</body>
<script language="javascript"  type="text/javascript">
//通用 移動(dòng) Div 類(lèi)
//請(qǐng)保留一下我的信息,謝謝
//Edit By Skybot
//QQ:35287352
function Tong_MoveDiv()
{
    //參數(shù)說(shuō)明
    // id 要移動(dòng)的層ID 
    // Evt 是 event, window.event; 要在FF 中可以用    e ? e :window.event;
    // T 為 int 有數(shù)字是拖動(dòng) 沒(méi)有是變大小
    this.Move=function(Id,Evt,T)
    {
        if(Id=="") return;
        var o = document.getElementById(Id);
        if(!o) return;//如果這個(gè)東東不在
        evt = Evt ? Evt : window.event;
        o.style.position = "absolute";//設(shè)定他的樣式為絕對(duì)定位
        o.style.zIndex = 200;//這里顯示上下的
        var obj = evt.srcElement ? evt.srcElement : evt.target; //得到個(gè)原素  使它在FF中也可以用
        //得到當(dāng)前對(duì)要移動(dòng)對(duì)象的 坐標(biāo)
        var w = o.offsetWidth;
        var h = o.offsetHeight;
        var l = o.offsetLeft;
        var t = o.offsetTop;
        var div = document.createElement("DIV");//新原素DIV
        document.body.appendChild(div);
        div.style.cssText = "filter:alpha(Opacity=10,style=0);opacity:0.2;width:"+w+"px;height:"+h+"px;top:"+t+"px;left:"+l+"px;position:absolute;background:#000";//設(shè)定 filter; 注意opacity 是FF中的 Opacity
        div.setAttribute("id", Id +"temp");
        
        if(T)//看看是拖動(dòng)還是 變大小
        {
            this.Move_OnlyMove(Id,evt);
        }
        else
        {
            
        }
    }
    
    //移動(dòng)函數(shù)
    //參數(shù) Id  要移動(dòng)的層ID 
    //Evt 是 event, window.event; 要在FF 中可以用    e ? e :window.event;
    this.Move_OnlyMove = function(Id,Evt)
    {
        var o = document.getElementById(Id+"temp");
        if(!o) return;
        evt = Evt?Evt:window.event;//都是FF 才要這么寫(xiě)的
        var relLeft = evt.clientX - o.offsetLeft;//得到左邊的 寬度
        var relTop = evt.clientY - o.offsetTop;//得到上邊的 寬度
        //抓取 事件
        if (!window.captureEvents)
        {
            o.setCapture(); //指定  抓取 事件
        
        }
        else
        {
            window.captureEvents(Event.MOUSEMOVE|Event.MOUSEUP);
        }
        
        //文檔的 onmousemove 事件
        document.onmousemove = function(e)
        {
            if (!o) return;
            e = e ? e : window.event;
            if (e.clientX - relLeft <= 0)
                o.style.left = 0 +"px";
            else if (e.clientX - relLeft >= document.documentElement.clientWidth - o.offsetWidth - 2)
                o.style.left = (document.documentElement.clientWidth - o.offsetWidth - 2) +"px";
            else
                o.style.left = e.clientX - relLeft +"px";
            if (e.clientY - relTop <= 1)
                o.style.top = 1 +"px";
            else if (e.clientY - relTop >= document.documentElement.clientHeight - o.offsetHeight - 30)
                o.style.top = (document.documentElement.clientHeight - o.offsetHeight - 30) +"px";
            else
                o.style.top = e.clientY - relTop +"px";
        }
        
        //文檔的 onmouseup 事件
        document.onmouseup = function()
        {
            if (!o) return;
            if (!window.captureEvents)
                o.releaseCapture();
            else
                window.releaseEvents(Event.MOUSEMOVE|Event.MOUSEUP);
            var o1 = document.getElementById(Id);
            if (!o1) return;
            var l0 = o.offsetLeft;
            var t0 = o.offsetTop;
            var l = o1.offsetLeft;
            var t = o1.offsetTop;    
            MyMove.Move_e(Id, l0 , t0, l, t);
            document.body.removeChild(o);
            o = null;
        }    
    }
    
    this.Move_e = function(Id, l0 , t0, l, t)
    {
        if (typeof(window["ct"+ Id]) != "undefined") clearTimeout(window["ct"+ Id]);
        var o = document.getElementById(Id);
        if (!o) return;
        var sl = st = 8;
        var s_l = Math.abs(l0 - l);
        var s_t = Math.abs(t0 - t);
        if (s_l - s_t > 0)
            if (s_t)
                sl = Math.round(s_l / s_t) > 8 ? 8 : Math.round(s_l / s_t) * 6;
            else
                sl = 0;
        else
            if (s_l)
                st = Math.round(s_t / s_l) > 8 ? 8 : Math.round(s_t / s_l) * 6;
            else
                st = 0;
        if (l0 - l < 0) sl *= -1;
        if (t0 - t < 0) st *= -1;
        if (Math.abs(l + sl - l0) < 52 && sl) sl = sl > 0 ? 2 : -2;
        if (Math.abs(t + st - t0) < 52 && st) st = st > 0 ? 2 : -2;
        if (Math.abs(l + sl - l0) < 16 && sl) sl = sl > 0 ? 1 : -1;
        if (Math.abs(t + st - t0) < 16 && st) st = st > 0 ? 1 : -1;
        if (s_l == 0 && s_t == 0) return;
        if (Math.abs(l + sl - l0) < 2)
            o.style.left = l0 +"px";
        else
            o.style.left = l + sl +"px";
        if (Math.abs(t + st - t0) < 2) 
            o.style.top = t0 +"px";
        else
            o.style.top = t + st +"px";
        window["ct"+ Id] = window.setTimeout("MyMove.Move_e('"+ Id +"', "+ l0 +" , "+ t0 +", "+ (l + sl) +", "+ (t + st) +")", 1);
    }
    
    
}
var MyMove = new  Tong_MoveDiv();
</script>
</html>

本文來(lái)自: 腳本之家(www.jb51.net) 詳細(xì)出處參考:http://www.jb51.net/article/11132.htm

本站僅提供存儲(chǔ)服務(wù),所有內(nèi)容均由用戶(hù)發(fā)布,如發(fā)現(xiàn)有害或侵權(quán)內(nèi)容,請(qǐng)點(diǎn)擊舉報(bào)
打開(kāi)APP,閱讀全文并永久保存 查看更多類(lèi)似文章
猜你喜歡
類(lèi)似文章
四個(gè)頁(yè)面轉(zhuǎn)向代碼
網(wǎng)頁(yè)圖片切換代碼
非常實(shí)用的彈窗特效代碼
ie和火狐兼容問(wèn)題(轉(zhuǎn)載)
IE和Firefox在JavaScript方面的兼容性
CSS的解決IE5/IE5.5/IE6/FF/IE7的兼容性問(wèn)題(2)
更多類(lèi)似文章 >>
生活服務(wù)
分享 收藏 導(dǎo)長(zhǎng)圖 關(guān)注 下載文章
綁定賬號(hào)成功
后續(xù)可登錄賬號(hào)暢享VIP特權(quán)!
如果VIP功能使用有故障,
可點(diǎn)擊這里聯(lián)系客服!

聯(lián)系客服