您好,登錄后才能下訂單哦!
本文實(shí)例為大家分享了vue實(shí)現(xiàn)拖拽x效果的具體代碼,供大家參考,具體內(nèi)容如下
實(shí)現(xiàn)拖拽之前,先了解幾個(gè)小常識(shí):
這兩種獲取鼠標(biāo)坐標(biāo)的方法,區(qū)別在于基于的對(duì)象不同:
1.clientX : 是用來(lái)獲取鼠標(biāo)點(diǎn)擊的位置距離 當(dāng)前窗口 左邊的距離
2.clientY: 是用來(lái)獲取鼠標(biāo)點(diǎn)擊的位置距離 當(dāng)前窗口 上邊的距離
3.offsetWidth: 用來(lái)獲取當(dāng)前拖拽元素 自身的寬度
4.offsetHeight:用來(lái)獲取當(dāng)前拖拽元素 自身的高度
5.document.documentElement.clientHeight :屏幕的可視高度
6.document.documentElement.clientWidth:屏幕的可視高度
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>vue實(shí)現(xiàn)拖拽</title> <script src="./js/vue.min.js"></script> </head> <style> *{margin: 0;padding:0;} #app{ position: relative; /*定位*/ top: 10px; left: 10px; width: 80px; height: 80px; background: #666; /*設(shè)置一下背景*/ } </style> <body> <div id="app" @mousedown="move"> {{positionX}} {{positionY}} </div> </body> <script> var vm = new Vue({ el: "#app", data: { positionX: 0, positionY: 0 }, methods: { move(e){ let odiv = e.target;// 獲取目標(biāo)元素 //計(jì)算出鼠標(biāo)相對(duì)點(diǎn)擊元素的位置,e.clientX獲取的是鼠標(biāo)的位置,OffsetLeft是元素相對(duì)于外層元素的位置 let x = e.clientX - odiv.offsetLeft; let y = e.clientY - odiv.offsetTop; console.log(odiv.offsetLeft,odiv.offsetTop) document.onmousemove = (e) => { // 獲取拖拽元素的位置 let left = e.clientX - x; let top = e.clientY - y; this.positionX = left; this.positionY = top; //console.log(document.documentElement.clientHeight,odiv.offsetHeight) // 把拖拽元素 放到 當(dāng)前的位置 if (left <= 0) { left = 0; } else if (left >= document.documentElement.clientWidth - odiv.offsetWidth){ //document.documentElement.clientWidth 屏幕的可視寬度 left = document.documentElement.clientWidth - odiv.offsetWidth; } if (top <= 0) { top = 0; } else if (top >= document.documentElement.clientHeight - odiv.offsetHeight){ // document.documentElement.clientHeight 屏幕的可視高度 top = document.documentElement.clientHeight - odiv.offsetHeight } odiv.style.left = left + "px"; odiv.style.top = top + "px" } // 為了防止 火狐瀏覽器 拖拽陰影問(wèn)題 document.onmouseup = (e) => { document.onmousemove = null; document.onmouseup = null } } } }) </script> </html>
以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持億速云。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。