利用vue和element-ui ,实现需求弹窗右上角关闭按钮左面新增一个减号缩小按钮,把弹窗缩小到只有一个放大按钮和一个关闭按钮的div,div的功能有三个:1div可以拖拽,2放大按钮可以还原弹窗大小,关闭按钮是把弹窗关闭。请用具体代码来实现
时间: 2024-02-26 07:57:18 浏览: 148
vue 使用element-ui中的Notification自定义按钮并实现关闭功能及如何处理多个通知
5星 · 资源好评率100%
好的,我会尽力回答您的问题。
首先,我们需要在弹窗组件的模板中添加一个新的按钮,用于缩小弹窗。同时,我们还需要为弹窗组件添加一些事件处理函数,用于拖拽和缩小弹窗。
下面是实现该需求的代码示例:
```vue
<template>
<div class="dialog-container" :style="dialogStyle">
<div class="header">
<span class="title">{{ title }}</span>
<el-button class="btn-minimize" icon="el-icon-minus" @click="minimize"></el-button>
<el-button class="btn-close" icon="el-icon-close" @click="close"></el-button>
</div>
<div class="body">
<!-- 弹窗内容 -->
</div>
</div>
</template>
<script>
export default {
name: 'MyDialog',
props: {
title: {
type: String,
default: ''
}
},
data() {
return {
dialogStyle: {
top: '50px',
left: '50px',
width: '400px',
height: '300px',
zIndex: '1000'
},
isDragging: false,
mouseX: 0,
mouseY: 0,
dialogWidth: 0,
dialogHeight: 0,
isMinimized: false,
savedDialogStyle: null
}
},
methods: {
close() {
// 关闭弹窗
this.$emit('close')
},
minimize() {
if (!this.isMinimized) {
// 保存当前弹窗样式
this.savedDialogStyle = Object.assign({}, this.dialogStyle)
// 缩小弹窗
this.dialogStyle.width = '100px'
this.dialogStyle.height = '50px'
this.isMinimized = true
} else {
// 还原弹窗大小
Object.assign(this.dialogStyle, this.savedDialogStyle)
this.isMinimized = false
}
},
startDrag(e) {
// 开始拖拽
this.isDragging = true
this.mouseX = e.clientX
this.mouseY = e.clientY
this.dialogWidth = this.$el.offsetWidth
this.dialogHeight = this.$el.offsetHeight
},
onDrag(e) {
// 拖拽中
if (this.isDragging) {
let dx = e.clientX - this.mouseX
let dy = e.clientY - this.mouseY
this.dialogStyle.left = (parseInt(this.dialogStyle.left) + dx) + 'px'
this.dialogStyle.top = (parseInt(this.dialogStyle.top) + dy) + 'px'
}
},
stopDrag() {
// 结束拖拽
this.isDragging = false
}
},
mounted() {
// 添加拖拽事件
this.$el.addEventListener('mousedown', this.startDrag)
window.addEventListener('mousemove', this.onDrag)
window.addEventListener('mouseup', this.stopDrag)
},
beforeDestroy() {
// 移除拖拽事件
this.$el.removeEventListener('mousedown', this.startDrag)
window.removeEventListener('mousemove', this.onDrag)
window.removeEventListener('mouseup', this.stopDrag)
}
}
</script>
<style>
.dialog-container {
position: absolute;
border: 1px solid #ccc;
background-color: #fff;
border-radius: 4px;
}
.header {
height: 40px;
padding: 8px;
border-bottom: 1px solid #ccc;
display: flex;
align-items: center;
justify-content: space-between;
}
.title {
font-size: 16px;
font-weight: bold;
}
.btn-minimize {
margin-left: 8px;
}
.body {
padding: 16px;
height: calc(100% - 40px);
}
.btn-close {
position: absolute;
top: 8px;
right: 8px;
}
</style>
```
在上面的代码中,我们添加了一个名为 `btn-minimize` 的缩小按钮,并为其绑定了 `minimize` 方法,用于缩小弹窗。同时,我们还为弹窗容器添加了 `isDragging`、`mouseX`、`mouseY`、`dialogWidth`、`dialogHeight`、`isMinimized` 和 `savedDialogStyle` 等多个状态,用于支持拖拽和缩小弹窗的功能。
在 `minimize` 方法中,我们通过保存当前弹窗样式的方式实现了缩小功能。具体来说,我们将当前弹窗样式保存到 `savedDialogStyle` 变量中,然后将弹窗的宽度和高度设置为固定值,以实现缩小的效果。当用户点击缩小按钮时,如果弹窗已经被缩小,则将弹窗的样式还原为之前保存的样式,以实现还原的效果。
在 `startDrag`、`onDrag` 和 `stopDrag` 方法中,我们实现了拖拽弹窗的功能。具体来说,我们在 `mounted` 钩子函数中添加了拖拽事件的监听器,当用户按下鼠标左键时,会触发 `startDrag` 方法,开始拖拽。在拖拽过程中,会触发 `onDrag` 方法,根据鼠标移动的距离来更新弹窗的位置。当用户释放鼠标左键时,会触发 `stopDrag` 方法,结束拖拽。
最后,我们在样式中添加了一些基本的样式规则,用于美化弹窗的外观。请注意,由于弹窗是绝对定位的,我们需要通过 JavaScript 来设置弹窗的初始位置和大小。在上面的代码中,我们将弹窗的位置设置为 `(50px, 50px)`,大小设置为 `(400px, 300px)`。如果需要修改弹窗的初始位置和大小,可以修改 `dialogStyle` 对象中的值。
阅读全文