安卓嵌入H5页面底部按钮使用fixed定位被软键盘顶起问题
作者:
光明大兄弟 | 来源:发表于
2020-04-27 15:17 被阅读0次data() {
return {
docmHeight: document.documentElement.clientHeight, // 默认屏幕高度
showHeight: document.documentElement.clientHeight, // 实时屏幕高度
hideShow: true,
}
}
mounted(){
// window.onresize 监听页面高度的变化
window.onresize = () => {
return (()=>{
this.showHeight = document.documentElement.clientHeight;
})();
}
}
destroyed() {
// 销毁onresize 监听页面高度的变化
window.onresize = null;
},
// 监听
watch:{
// 实时屏幕高度
showHeight: function() {
if(this.docmHeight > this.showHeight){
this.hideShow = false
} else {
this.hideShow = true
}
},
},
本文标题:安卓嵌入H5页面底部按钮使用fixed定位被软键盘顶起问题
本文链接:https://www.haomeiwen.com/subject/monywhtx.html
网友评论