示例:
<!DOCTYPE html>
<title>Test</title>
<body style="position: relative; overflow: hidden;">
<input type="text" style="position: absolute; top: 420px;">
</body>
从左到右查看下面的图像序列:
答案 0 :(得分:1)
我用屏幕上的动画解决了屏幕键盘上模糊的输入
var headerHeight = $("header").outerHeight(true);
$(document).on('focus', 'input:not([name=option]),select,textarea', function (e) {
$("html").animate({ scrollTop: $(e.target).offset().top - (headerHeight + 30) }, 500);
});
您还可以使用这些功能