1.video fixed布局会造成:视频移动,黑色底留下
2.flex布局,video固定高度,自适应部分用scroll-view, 代码如下:
…
.grid-box{
width: 100%;
height: 100%;
display: flex;
flex-direction: column;
}
.grid-const{width: 750rpx;height: 422rpx;}
.grid-var{flex: 1;}
.content{height: 100%;}
以上代码可以满足需求,但是下拉页面,video还是会跟着移动
3.最终解决方案,禁止页面Page滚动:
在json配置文件中添加:“disableScroll”:true
网友评论