- 问题:
在 ios safari 浏览器中,content 列表底部展示不全 被浏览器工具栏(safari footer)遮挡;
- 代码:
css
.wrapper {
position: fixed;
top: 0;
width: 100%;
height:100vh;
.content{
padding-top:44px;
min-height:100vh;
}
}
<-- 绝对定位元素与 .wrapper 挂载元素同级;-->
<div style="position:fiexd;height:44px">.title</div>
<div class="wrapper" ref="wrapper">
<div class="content">
</div>
<div/>
- 分析:
wrapper 容器 是 fiex 定位 ,所以 content 被工具栏遮挡需要改变 wrapper 高度 - 方案:
只读属性 clientHeight 为实际页面可视区高度,将 clientHeight 设置为 better-scroll 容器高度
这个属性是只读属性,对于没有定义CSS或者内联布局盒子的元素为0,否则,它是元素内部的高度(单位像素),包含内边距,但不包括水平滚动条、边框和外边距。
this.$refs.wrapper.style.height = document.body.clientHeight + "px";
this.bscroll = new BScroll(this.$refs.wrapper, {
click: true,
//......
});
css
.wrapper {
position: fixed;
top: 0;
.content{
padding-top:44px;
min-height:100vh;
}
}
- 最终模拟效果