这篇文章主要介绍“小程序怎么实现轮播图”,在日常操作中,相信很多人在小程序怎么实现轮播图问题上存在疑惑,小编查阅了各式资料,整理出简单好用的操作方法,希望对大家解答”小程序怎么实现轮播图”的疑惑有所帮助!接下来,请跟着小编一起来学习吧!

使用微信提供的swiper控件,在页面wxml中添加控件

  <view class="page-body">

    <view class="page-section page-section-spacing swiper">

      <swiper indicator-dots="{{indicatorDots}}"

        autoplay="{{autoplay}}" interval="{{interval}}" duration="{{duration}}">

        <block wx:for="{{background}}" wx:key="*this">

          <swiper-item>

            <image src='{{item.url}}' class='slide-image' mode='aspectFill' ></image>

          </swiper-item>

        </block>

      </swiper>

    </view>

在wxss中设置样式

.swiper {

 height: 400rpx;

 width: 100%;

}

.swiper image {

 height: 100%;

 width: 100%;

}

在js 中设置数据

  data: {

    background:[

      {url:'../../images/banner/banner1.jpeg'},

      { url: '../../images/banner/banner2.png' },

      { url: '../../images/banner/banner3.png' },

    ],

    indicatorDots: true,

    vertical: false,

    autoplay: true,

    interval: 2000,

    duration: 500

  },