data: {
testImgs: [
"https://example.com/123.png",
"https://example.com/123.png",
"https://example.com/123.png",
"https://example.com/123.png",
"https://example.com/123.png"
]
}
------------------------------------------
<swiper style="width: 100%; height: 300px;" autoplay="{{ true }}" skip-hidden-item-layout="{{ true }}" indicator-dots="{{ true }}">
<block wx:for="{{ testImgs }}" wx:key="index">
<swiper-item>
<image src="{{item}}" mode="widthFix" />
</swiper-item>
</block>
</swiper>
条件:随便五张图片,开启自动播放,图片image设置mode为widthFix
问题:自动播放到第五张回到第一张时,第一张图片不展示,第二张恢复正常
你好,麻烦提供出现问题的具体机型、微信版本号、系统版本号,以及能复现问题的代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)