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.
17 lines
492 B
17 lines
492 B
6 years ago
|
<!--components/swiper/index.wxml-->
|
||
|
<view class="e-swiper">
|
||
|
<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="*this">
|
||
|
<swiper-item bind:tap="onTapImage" data-item="{{item}}">
|
||
|
<image class="swiper_icon" src="{{item.image}}"></image>
|
||
|
</swiper-item>
|
||
|
</block>
|
||
|
</swiper>
|
||
|
</view>
|