监听页面高度,当键盘弹出时,将按钮隐藏。 data() { return { docmHeight: document.documentElement.clientHe
监听页面高度,当键盘弹出时,将按钮隐藏。
data() {
return {
docmHeight: document.documentElement.clientHeight ||document.body.clientHeight,
showHeight: document.documentElement.clientHeight ||document.body.clientHeight,
hideshow:true //显示或者隐藏footer
}
},
watch: {
//监听显示高度
showHeight:function() {
if(this.docmHeight > this.showHeight){
//隐藏
this.hideshow=false
}else{
//显示
this.hideshow=true
}
}
},
mounted() {
//监听事件
window.onresize = ()=>{
return(()=>{
this.showHeight = document.documentElement.clientHeight || document.body.clientHeight;
})()
}
},
<div class="bottom" v-show="hideshow">
<div class="btn">
<button>确认</button>
<button>取消</button>
</div>
</div>
到此这篇关于Vue 解决移动端弹出键盘导致页面fixed布局错乱的问题(推荐)的文章就介绍到这了,更多相关vue 移动端弹出键盘内容请搜索编程网以前的文章或继续浏览下面的相关文章希望大家以后多多支持编程网!
--结束END--
本文标题: vue实现移动端弹出键盘功能(防止页面fixed布局错乱)
本文链接: https://lsjlt.com/news/147653.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-01-12
2023-05-20
2023-05-20
2023-05-20
2023-05-20
2023-05-20
2023-05-20
2023-05-20
2023-05-20
2023-05-20
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0