微信小程序之swiper

 

微信小程序在插入轮播图时需要用到swiper滑块视图容器,

swiper 里只能放置swiper-item(插槽)组件,否则会导致未定义的行为。

<view>
    <image class="top-theme" src="{{themeA.entrance_img}}"></image>
    <swiper class="swiper-img"
            indicator-dots="{{true}}"
            indicator-active-color="#157658"
            circular
            autoplay
            interval="2000">
        <block wx:for="{{bannerB[0].items}}" wx:key="key">
            <swiper-item>
                <image class="swiper-img" src="{{item.img}}"></image>
            </swiper-item>
        </block>
    </swiper>
</view>

indicator-dots="{{true}}" :显示面板指示点

indicator-active-color="#157658" :设置选中的指示点颜色

circular:循环轮播
autoplay:自动切换
interval="2000":自动切换间隔时间、

示例:

微信小程序之swiper

 

微信小程序之swiper

上一篇:ESA2GJK1DH1K微信小程序篇: 微信小程序APUConfig给WI-Fi模块配网并绑定设备,并通过MQTT控制设备(ESP8266_SDK开发版)


下一篇:android(操作系统)