經常會碰到需要拖拽縮放的情況,只要有思路,實現起來會非常順暢。
功能的核心是鼠標放在四個邊和角上,拖拽把容器放大或縮小
功能演示
縮放:

?
移動:
演示網址:寶藏導航?
縮放設計思路
- 使用css繪制四條邊和四個角
- 通過css定位,控制四根線和四個角在對應的位置
- 監聽鼠標點擊和移動事件
- 在移動的過程中,改變容器的大小
核心設計
基礎html結構
<template>
<div
ref="draggableContainer"
class="draggable-container"
@mousedown="startDrag"
:style="containerStyle"
>
<slot></slot>
<span
v-for="type in resizeTypes"
:key="type"
:class="`${type}-resize`"
@mousedown="startResize($event, type)"
></span>
</div>
</template>
基礎data數據:
data: {
resizeTypes: ["lt", "t", "rt", "r", "rb", "b", "lb", "l"],
position: { x: this.left, y: this.top },
size: { width: this.width, height: this.height },
}
核心代碼和思路
容器新寬度 = 容器初始寬度 + 鼠標移動距離
通過上面公式,我們需要記錄
- 容器的初始寬度
鼠標移動距離 = 鼠標新位置 - 鼠標初始距離
1. 記錄容器和鼠標初始狀態
startResize(event) {
this.originMouseX = event.clientX;
this.originMouseY = event.clientY;
this.originWidth = this.size.width;
this.originHeight = this.size.height;
},
2. 計算拖拽后新寬度
根據:容器新寬度 = 容器初始寬度 + 鼠標移動距離
拖拽容器右邊:
const deltaX = event.clientX - this.originMouseX;
newWidth = this.originWidth + deltaX;
拖拽容器右下角:
當我們拖拽容器右下角,容器的寬和高都會改變。我們需要把這個拆分成兩個步驟來解決。
const deltaX = event.clientX - this.originMouseX;
newWidth = this.originWidth + deltaX;
const deltaY = event.clientY - this.originMouseY;
newHeight = this.originHeight + deltaY;
拖拽左邊和上邊:
拖拽左邊的時候,左邊的定位不能始終都是在原來的位置。
假設:
我們的初始位置是 left: 200px
。左邊向左拖拽50px
后,需要變為left: 150px
首先我們需要在開始的時候記錄容器的初始位置
startResize(event) {
this.originMouseX = event.clientX;
this.originMouseY = event.clientY;
this.originWidth = this.size.width;
this.originHeight = this.size.height;
this.originContainX = this.position.x;
this.originContainY = this.position.y;
}
改變寬高的同時,改變容器左上角的位置
const deltaX = event.clientX - this.originMouseX;
newWidth = this.originWidth - deltaX;
this.position.x = this.originContainX + deltaX;
3. 確定拖拽的是哪條邊
我們在點擊的時候會傳遞type,使用變量把type記錄下。
<span
v-for="type in resizeTypes"
:key="type"
:class="`${type}-resize`"
@mousedown="startResize($event, type)"
></span>
startResize(event, type) {
this.resizeType = type;
......
}
handleResize() {
const deltaX = event.clientX - this.originMouseX;
const deltaY = event.clientY - this.originMouseY;
let newWidth = this.originWidth;
let newHeight = this.originHeight;
switch (this.resizeType) {
case "lt":
newWidth = this.originWidth - deltaX;
this.size.width = newWidth;
this.position.x = this.originContainX + deltaX;
newHeight = this.originHeight - deltaY;
this.size.height = newHeight;
this.position.y = this.originContainY + deltaY;
break;
case "t":
newHeight = this.originHeight - deltaY;
this.size.height = newHeight;
this.position.y = this.originContainY + deltaY;
break;
右邊,右下角同理......
}
4.設置最小的拖拽寬和高
如果新拖拽的寬度,已經小于最小寬度。拖拽時不進行任何改動。
switch (this.resizeType) {
case "lt":
newWidth = this.originWidth - deltaX;
newHeight = this.originHeight - deltaY;
if (newWidth >= this.minWidth) {
this.position.x = this.originContainX + deltaX;
this.size.width = newWidth;
}
if (newHeight >= this.minHeight) {
this.position.y = this.originContainY + deltaY;
this.size.height = newHeight;
}
break;
case "t":
newHeight = this.originHeight - deltaY;
if (newHeight >= this.minHeight) {
this.position.y = this.originContainY + deltaY;
this.size.height = newHeight;
}
break;
右邊邊,右下角同理......
}
5.添加拖拽移動
拖拽移動的詳細內容,筆者寫的另一篇文章:拖拽移動詳細思路
下面的完整代碼是結合了拖拽移動和縮放整合在一起,一個較為完整的拖拽組件
完整代碼
<template>
<!-- 使用 v-if 判斷是否插入到 body 中 -->
<!-- 創建一個容器,支持拖拽,使用 ref 引用該容器 -->
<div
ref="draggableContainer"
class="draggable-container"
@mousedown="startDrag"
:style="containerStyle"
>
<slot></slot>
<span
v-for="type in resizeTypes"
:key="type"
:class="`${type}-resize`"
@mousedown="startResize($event, type)"
></span>
</div>
</template>
<script>
export default {
props: {
zIndex: { type: Number, default: 1 },
left: { type: Number, default: 0 },
top: { type: Number, default: 0 },
width: { type: Number, default: 300 },
height: { type: Number, default: 300 },
minWidth: { type: Number, default: 100 },
minHeight: { type: Number, default: 100 },
},
data() {
return {
resizeTypes: ["lt", "t", "rt", "r", "rb", "b", "lb", "l"],
position: { x: this.left, y: this.top },
size: { width: this.width, height: this.height },
originMouseX: 0,
originMouseY: 0,
originContainX: 0,
originContainY: 0,
originWidth: 0,
originHeight: 0,
resizeType: "",
};
},
computed: {
containerStyle() {
return {
top: `${this.position.y}px`,
left: `${this.position.x}px`,
width: `${this.size.width}px`,
height: `${this.size.height}px`,
zIndex: this.zIndex,
};
},
},
methods: {
* 拖拽邏輯
*/
startDrag(event) {
this.originMouseX = event.clientX;
this.originMouseY = event.clientY;
this.originContainX = this.position.x;
this.originContainY = this.position.y;
document.addEventListener("mousemove", this.handleDrag);
document.addEventListener("mouseup", this.stopDrag);
},
handleDrag(event) {
this.position.x = this.originContainX + event.clientX - this.originMouseX;
this.position.y = this.originContainY + event.clientY - this.originMouseY;
},
* 縮放邏輯
*/
startResize(event, type) {
this.resizeType = type;
this.originMouseX = event.clientX;
this.originMouseY = event.clientY;
this.originWidth = this.size.width;
this.originHeight = this.size.height;
this.originContainX = this.position.x;
this.originContainY = this.position.y;
event.stopPropagation();
document.addEventListener("mousemove", this.handleResize);
document.addEventListener("mouseup", this.stopDrag);
},
handleResize(event) {
const deltaX = event.clientX - this.originMouseX;
const deltaY = event.clientY - this.originMouseY;
let newWidth = this.originWidth;
let newHeight = this.originHeight;
switch (this.resizeType) {
case "lt":
newWidth = this.originWidth - deltaX;
newHeight = this.originHeight - deltaY;
if (newWidth >= this.minWidth) {
this.position.x = this.originContainX + deltaX;
this.size.width = newWidth;
}
if (newHeight >= this.minHeight) {
this.position.y = this.originContainY + deltaY;
this.size.height = newHeight;
}
break;
case "t":
newHeight = this.originHeight - deltaY;
if (newHeight >= this.minHeight) {
this.position.y = this.originContainY + deltaY;
this.size.height = newHeight;
}
break;
case "rt":
newWidth = this.originWidth + deltaX;
newHeight = this.originHeight - deltaY;
if (newWidth >= this.minWidth) {
this.size.width = newWidth;
}
if (newHeight >= this.minHeight) {
this.position.y = this.originContainY + deltaY;
this.size.height = newHeight;
}
break;
case "r":
newWidth = this.originWidth + deltaX;
if (newWidth >= this.minWidth) {
this.size.width = newWidth;
}
break;
case "rb":
newWidth = this.originWidth + deltaX;
newHeight = this.originHeight + deltaY;
if (newWidth >= this.minWidth) {
this.size.width = newWidth;
}
if (newHeight >= this.minHeight) {
this.size.height = newHeight;
}
break;
case "b":
newHeight = this.originHeight + deltaY;
if (newHeight >= this.minHeight) {
this.size.height = newHeight;
}
break;
case "lb":
newWidth = this.originWidth - deltaX;
newHeight = this.originHeight + deltaY;
if (newWidth >= this.minWidth) {
this.position.x = this.originContainX + deltaX;
this.size.width = newWidth;
}
if (newHeight >= this.minHeight) {
this.size.height = newHeight;
}
break;
case "l":
newWidth = this.originWidth - deltaX;
if (newWidth >= this.minWidth) {
this.position.x = this.originContainX + deltaX;
this.size.width = newWidth;
}
break;
}
},
* 停止拖拽或縮放
* 清除事件監聽器
*/
stopDrag() {
document.removeEventListener("mousemove", this.handleDrag);
document.removeEventListener("mousemove", this.handleResize);
document.removeEventListener("mouseup", this.stopDrag);
},
},
beforeDestroy() {
this.stopDrag();
},
};
</script>
<style lang="scss" scoped>
$lineOffset: -6px;
$cornerOffset: -8px;
/* 拖拽容器的樣式 */
.draggable-container {
position: fixed; /* 絕對定位 */
cursor: move; /* 鼠標移動時顯示抓手指針 */
user-select: none; /* 禁止選中文本 */
background-color: #ccc;
span {
position: absolute;
display: block;
}
/* 左邊和右邊 */
.l-resize,
.r-resize {
width: 8px;
height: 100%;
top: 0;
cursor: w-resize;
}
.l-resize {
left: $lineOffset;
}
.r-resize {
right: $lineOffset;
}
/* 上邊和下邊 */
.t-resize,
.b-resize {
width: 100%;
height: 8px;
left: 0;
cursor: s-resize;
}
.t-resize {
top: $lineOffset;
}
.b-resize {
bottom: $lineOffset;
}
/* 四個角 */
.lt-resize,
.rt-resize,
.rb-resize,
.lb-resize {
width: 15px;
height: 15px;
z-index: 10;
}
.lt-resize,
.lb-resize {
left: $cornerOffset;
}
.lt-resize,
.rt-resize {
top: $cornerOffset;
}
.rt-resize,
.rb-resize {
right: $cornerOffset;
}
.rb-resize,
.lb-resize {
bottom: $cornerOffset;
}
.lt-resize,
.rb-resize {
cursor: se-resize;
}
.rt-resize,
.lb-resize {
cursor: sw-resize;
}
}
</style>
組件引用
<DraggableContainer
:width="400"
:height="400"
:min-height="300"
:min-width="300"
>
<div>能拖動我了</div>
</DraggableContainer>
總結
部分代碼設計參考了著名第三方庫vxe-modal的設計思路:vxe-modal
本文實現了拖拽移動和縮放的功能,同學們也可以根據需要往上面添加自己的改動。希望對您有所幫助!