收藏
回答

swiper组件skip-hidden-item-layout属性会导致图片不展示

框架类型 问题类型 API/组件名称 终端类型 微信版本 基础库版本
小程序 Bug swiper 微信安卓客户端 最新 2.12.0
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

问题:自动播放到第五张回到第一张时,第一张图片不展示,第二张恢复正常

回答关注问题邀请回答
收藏

1 个回答

登录 后发表内容
问题标签