(Vue)移动端点击输入框,弹出键盘,底部被顶起问题:https://www.jianshu.com/p/210fbc846544
第一步: 先在 data 中去 定义 一个记录高度是 属性
data () {
return {
docmHeight: '0', //默认屏幕高度
showHeight: '0', //实时屏幕高度
hidshow:true //显示或者隐藏footer,
isResize:false //默认屏幕高度是否已获取
};
},
第二步: 我们需要将 reisze 事件在 vue mounted 的时候 去挂载一下它的方法
mounted() {
// window.onresize监听页面高度的变化
window.onresize = ()=>{
return(()=>{
if (!this.isResize) {
//默认屏幕高度
this.docmHeight: document.documentElement.clientHeight
this.isResize = true
}
//实时屏幕高度
this.showHeight = document.body.clientHeight
})()
}
},
第三步:watch监控比较,判断按钮是否该显示出来
showHeight:function() {
if(this.docmHeight > this.showHeight){
this.hidshow=false
}else{
this.hidshow=true
}
}
第四步:在模板中给footer添加v-show
<div class="footer" v-show="hidshow">
移动端点击输入框,弹出键盘,底部被顶起问题
</div>
作者:rightmost
链接:https://www.jianshu.com/p/210fbc846544
來源:简书
简书著作权归作者所有,任何形式的转载都请联系作者获得授权并注明出处。