You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
<!--components/swiper/index.wxml-->
|
|
|
|
<view class="e-swiper" wx:if="{{images.length > 0}}">
|
|
|
|
<swiper autoplay="{{true}}"
|
|
|
|
interval="{{2000}}"
|
|
|
|
duration="{{500}}"
|
|
|
|
circular="{{true}}"
|
|
|
|
indicator-dots="{{true}}"
|
|
|
|
indicator-active-color="#D50000"
|
|
|
|
indicator-color="#fff"
|
|
|
|
>
|
|
|
|
<block wx:for="{{images}}" wx:key="swiper-{{index}}">
|
|
|
|
<swiper-item bind:tap="onTapImage" data-item="{{item}}">
|
|
|
|
<image class="swiper_icon" src="{{item.image}}"></image>
|
|
|
|
</swiper-item>
|
|
|
|
</block>
|
|
|
|
</swiper>
|
|
|
|
</view>
|