div模拟微信输入效果

12 篇文章 0 订阅
7 篇文章 0 订阅
<div class="main">
	<div class="chat-content" id="chat-content">
	</div>
	<div class="chat-ques">
		<div contenteditable="true" class="input" v-text="inputData" ref="input" @input="changeText">
		</div>
		<div class="send">发送</div>
	</div>
</div>
changeText(){
   if(this.$refs.input.innerText.trim()){
       this.isShowSendBtn = true
   }else{
       this.isShowSendBtn = false
   }
 }
 send(){
 	some code........
 	// h5 ios移动端,键盘收起以后页面不归位
	window.scroll(0,0);
}
 .main{
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.chat-content {
    background-color: #edf2f6;
    width: 100%;
    overflow-y: scroll;
    flex:1;
}
.chat-ques{
  width: 100%;
  padding:15px;
}
.send{
  float: right;
  width: 50px;
  height: 28px;
  line-height: 28px;
  border-radius: 5px;
  color:#fff;
  background:#07C160;
  border: 1px solid #ccc;
  text-align: center;
  margin-top: 1px;
}
.input{
  float: left;
  width: calc(100% - 60px);
  height: auto;
  max-height: 90px;
  min-height: 30px;
  overflow-y: scroll;
  line-height: 30px;
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 0 10px;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值