新版本微信 v8.0.53 出现的,之前正常
问题描述:
skyline模式下swiper配置 display-multiple-items 为1.25 (大于1的数)数字后,滚动时并不是滚动一项,而是整个展示区全部滚过去了
例:
模拟器正常
真机异常
<view style="padding-top: 60px; height: 100vh;">
<scroll-view type="list" scroll-y style="height: 100%; width: 100%;">
<view class="section center">
<view class="section-title center">layout: normal </view>
<swiper class="swiper-container" circular
display-multiple-items="1.25"
layout-type="normal">
<swiper-item wx:for="{{food}}" wx:key="*this">
<image class="img" src="{{item}}" mode="aspectFill" />
</swiper-item>
</swiper>
</view>
</scroll-view>
</view>
display-multiple-items 预期应该是个整数的
这种效果一般是用 previous-margin 和 next-margin 来实现
小数属于非预期输入了
@灵芝 @Demons