首先,把置底元素设置成,在页面的底部而非屏幕的底部javascript
.page .bottom { position: absolute; bottom: 0; width: 100%; border: 0; text-align: center; z-index: 5; }
而后,设置页面的高度,让按钮有置底的效果css
.page { background: #fff; color: #384369; position: relative; width: 100%; overflow-y: auto; height: 100vh; min-height: 480px; }
注意有最小高度,由于当键盘弹起时,100vh是缩小的那部分的高度,而不是屏幕高度
*若是有大屏的需求,适配一下就好html
这样,当键盘弹起时,内容就是能够滚动的了,出于用户体验的需求,能够在focus输入框的时候,把滚动条划一下,露出输入框java
function whenFocus(){ document.body.scrollTop = document.documentElement.scrollTop =86; }
具体的数值能够再调整浏览器
<div class="main"> <div class="content"></div> <button></button> </div>
设置content为 overflow: auto;
让content的高度为 100vh-buttonHeight布局
使用第二种的htmlflex
.main{
height: 100vh; display: flex; flex-direction: column; justify-content: space-between; .content { overflow: auto; } }
利用window.resize方法,这个方法的特性是:当调整浏览器窗口的大小时,发生 resize 事件。ui
data(){
return{ screenHeightNoChange: true, } }, mounted() { const self = this; window.onresize = () => { if (self.oldFullHeight) { self.screenHeightNoChange = document.documentElement.clientHeight === self.oldFullHeight; console.log(' self.screenHeightNoChange ' + self.screenHeightNoChange); } }; },
screenHeightNoChange==true的时候使用方法三,当==false的时候,将button变成position:relative; 就能解决问题了
this
其中在移动端我最经常使用的仍是flex布局的办法spa