移动web页面,input获取焦点弹出系统虚拟键盘时,挡住input的解决方案

来源:互联网 发布:音乐加快软件 编辑:程序博客网 时间:2024/05/22 12:06

移动页面写定位时不用fixed定位
const brand = navigator.userAgent.indexOf(‘Android’)
if (brand > -1) {
const maxHeight = document.body.clientHeight
window.addEventListener(‘resize’, function () {
const presentHeight = document.body.clientHeight
if (document.activeElement.tagName === ‘INPUT’ || document.activeElement.tagName === ‘TEXTAREA’) {
if (presentHeight < maxHeight) {
// 隐藏底部导航
document.getElementById(‘footer’).style.display = ‘none’
window.setTimeout(function () {
document.activeElement.scrollIntoViewIfNeeded()
document.scrollIntoView(true)
}, 100)
} else {
document.getElementById(‘footer’).style.display = ‘flex’
}
}
})
}

阅读全文
0 0
原创粉丝点击