vue實現伸縮菜單功能
本文實例為大傢分享瞭vue實現伸縮菜單的具體代碼,供大傢參考,具體內容如下
先看效果:
點擊圖片按鈕可調整菜單寬度
伸縮後
頁面結構一共分為三部分,加上一個伸縮按鈕,在你的項目對應的部分都加上class名。
我這裡定義的分別是box、left、mid、resize(按鈕類名)
html
頁面結構劃分完成之後,完善一下樣式(直接復制,菜單類名換成你的)
/*拖拽區div樣式*/ .resize { cursor: col-resize; position: relative; // top: 45%; top: 400px; background-color: #d6d6d6; border-radius: 5px; margin-top: -10px; width: 10px; height: 50px; background-size: cover; background-position: center; font-size: 32px; color: white; } /*拖拽區鼠標懸停樣式*/ .resize:hover { color: #444444; } //左側菜單設置百分比寬度,方便拖拽自適應 .main_menu { width:22%; /*右側初始化寬度*/ height: 100%; background: #BF334E!important; box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.11); }
methods裡面的拖拽函數:
// 拖拽事件 dragControllerDiv() { var resize = document.getElementsByClassName('resize') var left = document.getElementsByClassName('left') var mid = document.getElementsByClassName('mid') var box = document.getElementsByClassName('box') for (let i = 0; i < resize.length; i++) { // 鼠標按下事件 resize[i].onmousedown = function (e) { //顏色改變提醒 resize[i].style.background = '#818181' var startX = e.clientX resize[i].left = resize[i].offsetLeft // 鼠標拖動事件 document.onmousemove = function (e) { console.log('鼠標按下') var endX = e.clientX var moveLen = resize[i].left + (endX - startX - 270) // (endx-startx)=移動的距離。resize[i].left+移動的距離=左邊區域最後的寬度 var maxT = box[i].clientWidth - resize[i].offsetWidth - 270// 容器寬度 - 左邊區域的寬度 = 右邊區域的寬度 console.log(moveLen,maxT) if (moveLen < 32) moveLen = 270 // 左邊區域的最小寬度為32px if (moveLen > maxT - 150) moveLen = maxT - 650 //右邊區域最小寬度為150px resize[i].style.left = moveLen // 設置左側區域的寬度 for (let j = 0; j < left.length; j++) { console.log( left[j].style) left[j].style.width = moveLen + 'px' mid[j].style.width = box[i].clientWidth - moveLen - 10 + 'px' } } // 鼠標松開事件 document.onmouseup = function (evt) { console.log('鼠標收起') //顏色恢復 resize[i].style.background = '#d6d6d6' document.onmousemove = null document.onmouseup = null resize[i].releaseCapture && resize[i].releaseCapture() //當你不在需要繼續獲得鼠標消息就要應該調用ReleaseCapture()釋放掉 } resize[i].setCapture && resize[i].setCapture() //該函數在屬於當前線程的指定窗口裡設置鼠標捕獲 return false } } },
mounted裡面調用:
mounted() { this.dragControllerDiv() },
以上就是本文的全部內容,希望對大傢的學習有所幫助,也希望大傢多多支持WalkonNet。