溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶(hù)服務(wù)條款》

vue實(shí)現(xiàn)拖拽的簡(jiǎn)單案例 不超出可視區(qū)域

發(fā)布時(shí)間:2020-09-28 13:38:48 來(lái)源:腳本之家 閱讀:401 作者:一個(gè)耕耘在后端的前端 欄目:web開(kāi)發(fā)

本文實(shí)例為大家分享了vue實(shí)現(xiàn)拖拽x效果的具體代碼,供大家參考,具體內(nèi)容如下

實(shí)現(xiàn)拖拽之前,先了解幾個(gè)小常識(shí):

這兩種獲取鼠標(biāo)坐標(biāo)的方法,區(qū)別在于基于的對(duì)象不同:

  • pageX和pageY獲取的是鼠標(biāo)指針距離文檔(HTML)的左上角距離,不會(huì)隨著滾動(dòng)條滾動(dòng)而改變;
  • clientX和clientY獲取的是鼠標(biāo)指針距離可視窗口(不包括上面的地址欄和滑動(dòng)條)的距離,會(huì)隨著滾動(dòng)條滾動(dòng)而改變;

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í)有所幫助,也希望大家多多支持億速云。

向AI問(wèn)一下細(xì)節(jié)

免責(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)容。

AI