美文网首页
android手机的h5页面键盘弹起时背景变形

android手机的h5页面键盘弹起时背景变形

作者: 马小帅mm | 来源:发表于2018-08-14 13:26 被阅读0次

2种解决方法

1.根据不同屏幕使用js计算给背景来个高度
//获取屏幕高度
var h = document.documentElement.clientHeight || document.body.clientHeight;
//给背景设置一个高度
document.getElementsByClassName('page_login')[0].style.height = h + 'px';
2.给背景一个最小高度
.page_login {
    min-height : 500px;
    height : 100%;
    background : #1CD39A url('/resource/images/annual_review/login_bg.jpg') no-repeat center center;
    background-attachment : fixed;
    background-size : cover;
}

相关文章

网友评论

      本文标题:android手机的h5页面键盘弹起时背景变形

      本文链接:https://www.haomeiwen.com/subject/ofzmbftx.html