移动端 fixed 固定按钮在屏幕下方,然后按钮被键盘顶上来...顶上来了有没有~

Posted design-pillar

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了移动端 fixed 固定按钮在屏幕下方,然后按钮被键盘顶上来...顶上来了有没有~相关的知识,希望对你有一定的参考价值。

在移动端 H5 页面开发中,我使用了 fixed 固定某个元素在屏幕的最下方,

这时点击输入框,接着非常非常自然地出现了元素被系统键盘顶起来的情况,如下图。

技术分享图片技术分享图片

解决方案:

首先,给页面最外层包裹一层 div(相对定位) ,然后页面渲染完成时给 div 的高度等于 body(document.body.clientHeight) 的高度,

接下来再给需要定位在屏幕下方的元素设置绝对定位即可解决问题。

css

 

body,html {
    height       : 100%;
}
#view {
    width        : 100%;
    height       : 100%;
    position     : relative;
}
.watch {
    width        : 96% ;
    height       : 30px;
    padding      : 0 2%;
    border       : 1px solid #00a5ba;
    outline      : none;
    border-radius: 4px ;
    overflow-y   : auto;
}
.fixed-btn {
    width        : 92% ;
    height       : 40px;
    background   : #00a5ba;
    border-radius: 4px ;
    /*position     : fixed;*/
    position     : absolute;
    bottom       : 20px;
    left         : 4%  ;
}

 

html

 

<div id="view">
    <input type="text" class="watch">
    <div class="fixed-btn"></div>
</div>

 

js

 

var load = document.body.clientHeight
var view = document.getElementById(‘view‘)

window.onload = function () {
    view.style.height = load + ‘px‘
}

 

我们想要的效果如下图:

技术分享图片技术分享图片

 

以上是关于移动端 fixed 固定按钮在屏幕下方,然后按钮被键盘顶上来...顶上来了有没有~的主要内容,如果未能解决你的问题,请参考以下文章

如何在列表视图下方放置固定按钮?

在响应式页脚菜单中添加“固定”div

移动端中 H5输入框在弹起键盘后被遮挡

android 开发布局:如何在屏幕下方显示一排按钮

mui底部按钮问题,使按钮一直在屏幕下端固定不动,中间内容上下滑动

关于移动端底部定位问题