Vue3自定义指令实现拖拽

文章展示了如何在Vue3中创建一个自定义指令`dialogDrag`,用于实现对话框的拖拽功能。通过监听鼠标事件,计算元素位置和屏幕尺寸,实现了对话框在可视区域内的边界限制拖动。该指令在组件中应用,允许用户通过对话框头部进行拖动。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

vue3使用自定义指令实现拖拽记录
在这里插入图片描述

贴代码记录一下

// 拖拽的指令
const drag = {
    beforeMount(el, binding) {
        // 自定义属性,判断是否可拖拽
        if (!binding.value) return
        const dialogHeaderEl = el.querySelector('.dialog_header')
        const dragDom = el.querySelector('.dialog_content')
        dialogHeaderEl.style.cssText += ';cursor:move;'

        const sty = (function () {
            return (dom, attr) => getComputedStyle(dom, null)[attr]
        })()

        dialogHeaderEl.onmousedown = (e) => {
            // 鼠标按下,计算当前元素距离可视区的距离
            const disX = e.clientX - dialogHeaderEl.offsetLeft
            const disY = e.clientY - dialogHeaderEl.offsetTop
            const screenWidth = document.body.clientWidth // body当前宽度
            const screenHeight = document.documentElement.clientHeight // 可见区域高度(应为body高度,可某些环境下无法获取)

            const dragDomWidth = dragDom.offsetWidth // 对话框宽度
            const dragDomheight = dragDom.offsetHeight // 对话框高度

            const minDragDomLeft = dragDom.offsetLeft
            const maxDragDomLeft = screenWidth - dragDom.offsetLeft - dragDomWidth

            const minDragDomTop = dragDom.offsetTop
            const maxDragDomTop = screenHeight - dragDom.offsetTop - dragDomheight

            // 获取到的值带px 正则匹配替换
            let styL = sty(dragDom, 'left')
            // 为兼容ie
            if (styL === 'auto') styL = '0px'
            let styT = sty(dragDom, 'top')


            // 注意在ie中 第一次获取到的值为组件自带50% 移动之后赋值为px
            if (styL.includes('%')) {
                styL = +document.body.clientWidth * (+styL.replace(/%/g, '') / 100)
                styT = +document.body.clientHeight * (+styT.replace(/%/g, '') / 100)
            } else {
                styL = +styL.replace(/px/g, '')
                styT = +styT.replace(/px/g, '')
            }

            document.onmousemove = function (e) {
                // 通过事件委托,计算移动的距离
                let left = e.clientX - disX
                let top = e.clientY - disY
                // 边界处理
                if (-(left) > minDragDomLeft) {
                    left = -(minDragDomLeft)
                } else if (left > maxDragDomLeft) {
                    left = maxDragDomLeft
                }

                if (-(top) > minDragDomTop) {
                    top = -(minDragDomTop)
                } else if (top > maxDragDomTop) {
                    top = maxDragDomTop
                }

                // 移动当前元素
                dragDom.style.cssText += `;left:${left + styL}px;top:${top + styT}px;`
            }

            document.onmouseup = function (e) {
                document.onmousemove = null
                document.onmouseup = null
            }
            return false
        }
    }
}
// 挂载,注册
const directives = {
    install: function (app) {
        app.directive('dialogDrag', drag)
    }
};
export default directives;

main.js 引入

//自定义拖拽
import Directives from "@/untils/directives";


const app = createApp(App)
app.use(Directives)

组件使用

<template>
  <div class="dialog_wrap" v-dialogDrag="true" >
    // 整个区域
    <div class="dialog_content" >
      // 可按下拖动的位置
      <div class="dialog_header">
        //...
      </div>
      // 其他
    </div>
  </div>
</template>
<style lang="scss" scoped>
.dialog_content{
  position: fixed;
  right: 0;
  bottom: 0;
  width: 392Px;
  //height: 580Px;
  .dialog_header{
    background: #0c73c2;
    height: 50Px;
    width: 100%;
  }
}
</style>

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值