美文网首页
h5 ios微信浏览器弹出键盘后布局错位

h5 ios微信浏览器弹出键盘后布局错位

作者: plum_meizi | 来源:发表于2020-01-17 18:30 被阅读0次

因为弹出键盘,导致微信浏览器被撑高了,fixed的布局就会受到影响,但是只要滚动页面,就可以恢复
在input失去焦点的时候,滚动到顶部就可以

 setTimeout(() => {
            const scrollHeight = document.documentElement.scrollTop || document.body.scrollTop || 0;
            window.scrollTo(0, Math.max(scrollHeight - 1, 0));
        }, 100);

相关文章

网友评论

      本文标题:h5 ios微信浏览器弹出键盘后布局错位

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