2023-02-21 22:34:08 +08:00

17 lines
434 B
Plaintext

<swiper
class="container"
indicator-dots
indicator-color="#a39f99"
indicator-active-color="#f49641"
interval="3000"
previous-margin="50rpx"
next-margin="50rpx"
bindchange="swiperchange"
circular
>
<block wx:for="{{imgUrls}}" wx:key="this">
<swiper-item>
<image src="{{item}}" class="image {{swiperIndex === index ? 'active' : 'quiet'}}" mode="aspectFill"></image>
</swiper-item>
</block>
</swiper>