关于移动端底部定位问题

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了关于移动端底部定位问题相关的知识,希望对你有一定的参考价值。

移动端的页面有些内容是需要固定在底部,一般会采用fixed,当页面中input获取到焦点的时候,

这时候底部的内容就会被顶上来

如果是按钮被顶上来,有时候不会影响页面效果,可是当底部是一些广告或者注意事项的时候,这时候这种效果就不行了。

解决办法,:

.mdfMessageBtn{
width:100%;
height:50px;
background-color: #ffb000;
color:#fff;
position:absolute;
bottom:0;
font-size: 16px;
}
html:
<div class="userContainer" style="position: relative; ">
  <button class="mdfMessageBtn">立即支付</button>
</div>
js:
loadBtn(".userContainer",".mdfMessageBtn");
/*按钮定位*/
function loadBtn(boot,loat){
var height=$(window).height();
$(boot).css("min-height",height);
var uHeight=$(boot).height();
if(uHeight<=height){

   }else{
$(loat).css({"position":"relative"})
    }
};
给按钮绝对定位,给其父级相对定位,获取屏幕高度,让其父级的最小高度为屏幕的高度,

以上是关于关于移动端底部定位问题的主要内容,如果未能解决你的问题,请参考以下文章

移动端fixed定位固定在底部 ios手机里为啥会遮住一半 滑动一下才显示全部 css

移动端弹窗滚动时,底部盒子跟着一起滚动

从一个片段移动到另一个片段时如何自动选择底部导航?

关于web移动端定位

HTML 关于绝对定位的问题手机端

移动端底部被输入法顶起的解决办法