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

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页面键盘弹起时背景变形)