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.
21 lines
839 B
21 lines
839 B
<!--pages/swiper/index.wxml-->
|
|
<swiper indicator-dots="{{indicatorDots}}"
|
|
autoplay="{{autoplay}}" circular="true" indicator-active-color="{{indindicatoractivecolori}}" indicator-color="white" interval="{{interval}}" duration="{{duration}}">
|
|
<block wx:for="{{imgUrls}}">
|
|
<swiper-item>
|
|
<image src="{{item}}" class="slide-image" width="355" height="150"/>
|
|
</swiper-item>
|
|
</block>
|
|
</swiper>
|
|
<button bindtap="changeIndicatorDots"> indicator-dots </button>
|
|
<button bindtap="changeAutoplay"> autoplay </button>
|
|
<slider bindchange="intervalChange" show-value min="500" max="2000"/>
|
|
<slider bindchange="durationChange" show-value min="1000" max="10000"/>
|
|
|
|
|
|
<view class="group">
|
|
<icon type="success" size="20"/>
|
|
<icon type="info" color="yellow" size="20"/>
|
|
</view>
|
|
|
|
<rich-text nodes="{{nodes}}" bindtap="tap"></rich-text>
|