安卓手机在input输入时,在底部有fixed定位在页面底部的图片时,安卓手机图片会随着屏幕变小而提到软键盘上面,可以进行一下处理;
该图片为底部图片
<img class="bottom-img animated fadeInUp" src="img/index_wen2.png" />
jQuery实现图片的显示和隐藏
window.onload = function () {
var pageHeight= $(document).height();
$(window).resize(function () { //ios软键盘弹出不会触发resize事件
if ($(document).height() < pageHeight) {
$(".bottom-img").hide();
} else {
$(".bottom-img").show();
}
});
}