Vue实现底部对话框

效果

手机上的效果:

在这里插入图片描述

电脑上的效果:

在这里插入图片描述

代码

App.vue
<template>
  <div id="app">
	  <button @click="showDialog">展示Dialog</button>
	  <my-dialog
		title="Hello"
		message="我是弹窗内容"
		:showDialog="isShowDialog"
		@closeDialog="isShowDialog=false"></my-dialog>
  </div>
</template>

<script>
import MyDialog from "./components/mdialog.vue"

export default {
	name: 'App',
	components: {
		MyDialog
	},
	
	methods: {
		showDialog: function(){
			this.isShowDialog = true;
		}
	},
	
	data: function(){
		return {
			isShowDialog: false
		}
	}
  
}
</script>

<style>
#app {
  font-family: Avenir, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-align: center;
  color: #2c3e50;
  margin-top: 60px;
}
</style>
mdialog.vue
<template>
<transition name="dialog">
	<div 
		v-if="showDialog"
		id="dialog-bg"
		@touchmove.prevent 
		@scroll.prevent >
		<div id="dialog" >
			<h2 
				style="text-align: left;padding-left: 10px;">
				{{title}}
			</h2>
			<p
				style="text-align: left;padding-left: 10px;word-wrap:break-word;">
				{{message}}
			</p>
			<button 
				class="dialog-button"
				@click="close" >关闭</button>
		</div>
	</div>
</transition>
</template>

<script>
	
	export default{
		props:{
			showDialog: Boolean,
			title: String,
			message: String
		},
		
		methods: {
			close: function(){
				this.$emit("closeDialog");
			}
		},
		
		watch:{
			
		}
		
	}
</script>

<style>
	* {
		box-sizing: border-box;
	}
	
	#dialog-bg{
		top: 0;
		left: 0;
		position: fixed;
		width: 100vw;
		height: 100vh;
		background-color: rgba(0,0,0,0.5);
		z-index: 98;
	}
	
	#dialog{
		border-radius: 20px 20px 0 0;
		position: fixed;
		bottom: 0;
		background-color: #FFFFFF;
		width: 100vw;
		padding: 15px;
		padding-bottom: 25px;
	}
	
	/* 适配电脑等大屏幕 */
	@media (min-width: 750px) {
		#dialog{
			width: 500px;
			left:0;
			right:0;
			margin:0 auto;
		}
	}
	
	.dialog-button{
		width: 100%;
		background-color: #6367D5;
		border-width: 0;
		border-radius: 360px;
		padding: 10px;
		outline: none;
		color: white;
	}
	
	.dialog-button:focus {
		outline: none;
	}
	
	.dialog-button:active{
		background-color: #585dbe;
		border-color: #585dbe;
	}
	
	
	.dialog-enter-active, .dialog-leave-active {
	  transition: all .5s;
	}
	
	.dialog-enter, .dialog-leave-to {
	  opacity: 0;
	  transform: translateY(300px);
	}
</style>
以下是一个简单的基于 Vue 2.x 实现消息对话框页面的示例代码: ```html <!-- MessageDialog.vue --> <template> <div class="message-dialog"> <div class="message-list"> <div class="message" v-for="(message, index) in messages" :key="index"> <div class="message-content" :class="{ 'left': message.isLeft, 'right': !message.isLeft }"> {{ message.content }} </div> </div> <div ref="messageEnd"></div> <!-- 自动滚动到底部的锚点 --> </div> <div class="message-input"> <input type="text" v-model="currentMessage" @keyup.enter="sendMessage" placeholder="请输入消息内容" /> <button @click="sendMessage">发送</button> </div> </div> </template> <script> export default { data() { return { messages: [], // 存储消息列表 currentMessage: '' // 当前输入的消息 }; }, methods: { sendMessage() { if (this.currentMessage.trim() === '') { return; } this.messages.push({ content: this.currentMessage, isLeft: true }); this.currentMessage = ''; this.$nextTick(() => { this.$refs.messageEnd.scrollIntoView({ behavior: 'smooth' }); // 滚动到底部 }); } } }; </script> <style scoped> .message-dialog { display: flex; flex-direction: column; height: 100%; } .message-list { flex: 1; overflow-y: auto; padding: 15px; } .message { display: flex; justify-content: flex-start; margin-bottom: 10px; } .message-content { padding: 8px 10px; border-radius: 5px; color: #fff; max-width: 200px; } .message-content.left { background-color: #2196f3; align-self: flex-start; } .message-content.right { background-color: #4caf50; align-self: flex-end; } .message-input { display: flex; align-items: center; padding: 15px; background-color: #f5f5f5; } .message-input input[type="text"] { flex: 1; padding: 10px; border-radius: 5px; border: none; margin-right: 10px; } .message-input button { padding: 10px; border-radius: 5px; border: none; background-color: #2196f3; color: #fff; cursor: pointer; transition: background-color 0.3s ease; } .message-input button:hover { background-color: #1976d2; } </style> ``` 该页面包含一个消息列表和一个消息输入。每当用户在输入中输入一条消息并按下回车键或点击发送按钮时,该消息将被添加到消息列表中。 为了使消息列表能够自动滚动到底部,我们添加了一个锚点元素,并在每次添加新消息时使用 `$nextTick()` 方法将页面滚动到该锚点元素。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值