使用scroll横向滑动
<scroll-view scroll-x="true" style=" white-space: nowrap; display: flex" >
<view style="display: inline-block"></view>
</scroll-view>
通过flex设置横向滑动
<view class="v1">
<view
class="v2"></view>
</view>
.v1{
overflow-x: scroll;
display: flex;
flex-wrap: nowrap;
justify-content: space-around;
}
.v2{
flex-shrink: 1;
}
文档竟然都不写出来,搞了小1个小时,害