前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >js实现磁性吸附

js实现磁性吸附

作者头像
星辉
发布2019-01-15 09:58:48
2.5K0
发布2019-01-15 09:58:48
举报

磁性吸附

目录

  • 代码实例
  • 与限定范围拖拽的差异
  • 下载源码链接

代码实例

* {
    padding: 0;
    margin: 0;
}
#box1 {
    width: 500px;
    height: 500px;
    background: #999;
    position: relative;
    left: 100px;
    top: 100px;
}
#box {
    width: 100px;
    height: 100px;
    background: #334;
    position: absolute;
    cursor: move;
}

<div id="box1">
<div id="box"></div>
</div>

(function () {
    var dragging = false
    var boxX, boxY, mouseX, mouseY, offsetX, offsetY
    var box = document.getElementById('box')
    var box1 = document.getElementById('box1')

    // 鼠标按下的动作
    box.onmousedown = down
    // 鼠标的移动动作
    document.onmousemove = move
    // 释放鼠标的动作
    document.onmouseup = up

    // 鼠标按下后的函数,e为事件对象
    function down(e) {
        dragging = true

        // 获取元素所在的坐标
        boxX = box.offsetLeft
        boxY = box.offsetTop

        // 获取鼠标所在的坐标
        mouseX = parseInt(getMouseXY(e).x)
        mouseY = parseInt(getMouseXY(e).y)

        // 鼠标相对元素左和上边缘的坐标
        offsetX = mouseX - boxX
        offsetY = mouseY - boxY
    }

    // 鼠标移动调用的函数
    function move(e){
        if (dragging) {
            // 获取移动后的元素的坐标
            var x = getMouseXY(e).x - offsetX
            var y = getMouseXY(e).y - offsetY

            // 计算可移动位置的大小, 保证元素不会超过可移动范围
            // 此处就是父元素的宽度减去子元素宽度
            var width = box1.clientWidth - box.offsetWidth
            var height = box1.clientHeight - box.offsetHeight

            // min方法保证不会超过右边界,max保证不会超过左边界
            x = Math.min(Math.max(0, x), width)
            y = Math.min(Math.max(0, y), height)

            // 磁性吸附部分
            if (x < RANGE) {x = 0}
            if (width - x < RANGE) {x = width}
            if (y < RANGE) {y = 0}
            if (height - y < RANGE) {y = height}

            // 给元素及时定位
            box.style.left = x + 'px'
            box.style.top = y + 'px'
        }
    }

    // 释放鼠标的函数
    function up(e){
        dragging = false
    }

    // 函数用于获取鼠标的位置
    function getMouseXY(e){
        var x = 0, y = 0
        e = e || window.event

        if (e.pageX) {
            x = e.pageX
            y = e.pageY
        } else {
            x = e.clientX + document.body.scrollLeft - document.body.clientLeft
            y = e.clientY + document.body.scrollTop - document.body.clientTop
        }
        return {
            x: x,
            y: y
        }
    }
})()

与限定范围拖拽的差异

简易拖拽的链接

简易拖拽

限定范围拖拽的链接

限定范围拖拽

添加磁性吸附部分
// 磁性吸附部分
if (x < RANGE) {x = 0}
if (width - x < RANGE) {x = width}
if (y < RANGE) {y = 0}
if (height - y < RANGE) {y = height}

下载源码链接

星辉的Github

本文参与 腾讯云自媒体分享计划,分享自作者个人站点/博客。
原始发表:2018年09月15日,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体分享计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
目录
  • 磁性吸附
    • 目录
      • 代码实例
        • 与限定范围拖拽的差异
          • 下载源码链接
          领券
          问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档