解决键盘弹出时,webview被挤压导致背景图片被挤压出空白

发布时间:2020-07-13 04:11:58 作者:1503849
来源:网络 阅读:1833

第一种方法:

1、给外层div容器设置背景图片

2、监听键盘弹出事件,弹出时调整容器的高度以适应背景图片

<body onresize="windowSizeChange();">

var oglHeight = document.querySelector("body").offsetHeight;

var windowSizeChange = function() { //弹出键盘时调整页面的高度,防止背景图片被挤压出空白区域

var tempHeight = document.querySelector("body").offsetHeight;

if(tempHeight == oglHeight) {

console.info("屏幕键盘隐藏");

document.getElementById('content').style.height = "100%";

} else {

console.info("键盘显示");

document.getElementById('content').style.height = "390px";

}

};


第二种方法:

背景固定,使用:before

body:before {

content: "";

position: fixed;

z-index: -1;

top: 0;

right: 0;

bottom: 0;

left: 0;

background: url(../../p_w_picpaths/10.jpg) center 0 no-repeat;

background-size: cover;

}


推荐阅读:
  1. 关于SnackBar被键盘挡住的解决方案
  2. iOS解决TextField被键盘遮住的问题

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

background content function

上一篇:Hadoop-2.6.0学习笔记汇总

下一篇:phpmailer发送excell

相关阅读

您好,登录后才能下订单哦!

密码登录
登录注册
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》