做html5 页面 在安卓手机上键盘 把底部导航顶上去了 怎么解决
展开全部
估计导航用的fixed定位吧,
var windheight =window.innerHeight;
var bottomx = document.getElementById('bottomx'); //底部导航
window.onresize(function(){ var docheight = window.innerHeight;
if(docheight < windheight){
bottomx.style.position = 'static';
}else{
bottomx.style.position = 'fixed';
}
})
展开全部
你底部用的一定是fixed定位吧...你可以再文本框获取焦点事件的时候把底部导航隐藏或者改成absolute
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
1.html
<nav class="mui-bar mui-bar-tab">
<a id="next" href="#">
<div style="background-color: #F29700;text-align: center;padding-top: 15px;padding-bottom: 15px;">
<span style="color: #FFFFFF;font-size: 15px;">下一步</span>
</div>
</a>
</nav>
2.js
var h = document.body.scrollHeight;
window.onresize = function(){
if (document.body.scrollHeight < h) {
document.getElementsByTagName("nav")[0].style.display = "none";
}else{
document.getElementsByTagName("nav")[0].style.display = "block";
}
};
<nav class="mui-bar mui-bar-tab">
<a id="next" href="#">
<div style="background-color: #F29700;text-align: center;padding-top: 15px;padding-bottom: 15px;">
<span style="color: #FFFFFF;font-size: 15px;">下一步</span>
</div>
</a>
</nav>
2.js
var h = document.body.scrollHeight;
window.onresize = function(){
if (document.body.scrollHeight < h) {
document.getElementsByTagName("nav")[0].style.display = "none";
}else{
document.getElementsByTagName("nav")[0].style.display = "block";
}
};
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询