国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 編程 > JavaScript > 正文

使用js實(shí)現(xiàn)的簡單拖拽效果

2019-11-20 12:54:32
字體:
供稿:網(wǎng)友

前端開發(fā)的時(shí)候,有好多地方用到拖拽效果,當(dāng)然 http://jqueryui.com/draggable/  是個(gè)不錯(cuò)的選擇,but 我是個(gè)打破砂鍋問到底的人,抽點(diǎn)時(shí)間用js小小的實(shí)現(xiàn)了類似的插件,話不多說。

 first: html和css

復(fù)制代碼 代碼如下:

<head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title></title>
    <style>
        * {
            margin: 0;
            padding: 0;
        }
        #div1 {
            position: absolute;
            width: 100px;
            height: 100px;
            cursor: move;
            background-color: red;
        }
    </style>
</head>
<body>
    <div id="div1">
    </div>
</body>
</html>

now,先把主要算法實(shí)現(xiàn)一下:

復(fù)制代碼 代碼如下:

 <script>
        window.onload = function () {
            //獲取需要拖拽的div
            var div1 = document.getElementById("div1");
            //添加鼠標(biāo)按下事件
            div1.onmousedown = function (evt) {
                var oEvent = evt || event;
                //獲取按下鼠標(biāo)到div left  top的距離
                var distanceX = oEvent.clientX - div1.offsetLeft;
                var distanceY = oEvent.clientX - div1.offsetTop;
                //添加doc滑動(dòng)時(shí)間
                document.onmousemove = function (evt) {
                    var oEvent = evt || event;
                    //重新計(jì)算div的left top值
                    var left = oEvent.clientX - distanceX;
                    var top = oEvent.clientY - distanceY;
                    //left  當(dāng)小于等于零時(shí),設(shè)置為零 防止div拖出document之外
                    if (left <= 0) {
                        left = 0;
                    }
                    //當(dāng)left 超過文檔右邊界  設(shè)置為右邊界
                    else if (left >= document.documentElement.clientWidth - div1.offsetWidth) {
                        left = document.documentElement.clientWidth - div1.offsetWidth;
                    }
                    if (top <= 0) {
                        top = 0;
                    }
                    else if (top >= document.documentElement.clientHeight - div1.offsetHeight) {
                        top = document.documentElement.clientHeight - div1.offsetHeight;
                    }
                    //重新給div賦值
                    div1.style.top = top + "px";
                    div1.style.left = left + "px";
                }
                //添加鼠標(biāo)抬起事件
                div1.onmouseup = function () {
                    //清空事件
                    document.onmousemove = null;
                    div1.onmouseup = null;
                }
            }
        }
    </script>

yeah,使用面向?qū)ο髮?shí)現(xiàn)一下

復(fù)制代碼 代碼如下:

<style>
        * {
            margin:0;
            padding:0;
        }
        #div1 {
            width: 100px;
            height: 100px;
            background-color: red;
        }
        #div2 {
            background-color:yellow;
            width:100px;
            height:100px;
        }
    </style>
<div id="div1"></div>
<div id="div2"></div>

js Draggle class:

復(fù)制代碼 代碼如下:

 function Drag(id) {
            this.div = document.getElementById(id);
            if (this.div) {
                this.div.style.cursor = "move";
                this.div.style.position = "absolute";
            }
            this.disX = 0;
            this.disY = 0;
            var _this = this;
            this.div.onmousedown = function (evt) {
                _this.getDistance(evt);
                document.onmousemove = function (evt) {
                    _this.setPosition(evt);
                }
                _this.div.onmouseup = function () {
                    _this.clearEvent();
                }
            }
        }
        Drag.prototype.getDistance = function (evt) {
            var oEvent = evt || event;
            this.disX = oEvent.clientX - this.div.offsetLeft;
            this.disY = oEvent.clientY - this.div.offsetTop;
        }
        Drag.prototype.setPosition = function (evt) {
            var oEvent = evt || event;
            var l = oEvent.clientX - this.disX;
            var t = oEvent.clientY - this.disY;
            if (l <= 0) {
                l = 0;
            }
            else if (l >= document.documentElement.clientWidth - this.div.offsetWidth) {
                l = document.documentElement.clientWidth - this.div.offsetWidth;
            }
            if (t <= 0) {
                t = 0;
            }
            else if (t >= document.documentElement.clientHeight - this.div.offsetHeight) {
                t = document.documentElement.clientHeight - this.div.offsetHeight;
            }
            this.div.style.left = l + "px";
            this.div.style.top = t + "px";
        }
        Drag.prototype.clearEvent = function () {
            this.div.onmouseup = null;
            document.onmousemove = null;
        }

at last:最終實(shí)現(xiàn):

復(fù)制代碼 代碼如下:

  window.onload = function () {
            new Drag("div1");
            new Drag("div2");
        }

效果如下:

以上所述就是本文的全部內(nèi)容了,希望能對(duì)大家更加熟練的掌握javascript有所幫助。

發(fā)表評(píng)論 共有條評(píng)論
用戶名: 密碼:
驗(yàn)證碼: 匿名發(fā)表
主站蜘蛛池模板: 鹤山市| 台中县| 天水市| 遵义市| 定西市| 大渡口区| 延寿县| 巧家县| 高安市| 昌都县| 渭源县| 息烽县| 广丰县| 龙岩市| 怀宁县| 江达县| 海伦市| 屏东县| 防城港市| 准格尔旗| 旬邑县| 静乐县| 从化市| 兴海县| 镇安县| 金昌市| 延川县| 澄城县| 泸水县| 遵义县| 慈溪市| 明水县| 临沧市| 鄄城县| 平顺县| 安阳市| 汕头市| 上饶市| 友谊县| 常宁市| 京山县|