码迷,mamicode.com
首页 > 其他好文 > 详细

小程序--swiper轮播图组件

时间:2018-07-18 15:10:22      阅读:1596      评论:0      收藏:0      [点我收藏+]

标签:function   slider   src   MinIP   detail   key   三元运算符   红色   ref   

效果图展示:

技术分享图片

先了解下swiper组件参数配置

技术分享图片

轮播实现的具体步骤如下:

第一步:添加图片素材,我这边是放到images下,文件以及图片名字自定义即可。

技术分享图片

 

第二步:在wxml中进行页面布局

在这里呢,用到了列表渲染 swiper组件三元运算符(注:由于小程序不能操作dom,三元运算符还有一个常用的使用场景是控件class样式输出,达到jQuery.addClass()的效果)

 <view class="swiper-container">
  <swiper autoplay="auto" interval="5000" duration="500" current="{{swiperCurrent}}" bindchange="swiperChange" class="swiper">
    <block wx:for="{{slider}}" wx:key="unique">
      <swiper-item>
        <image src="{{item.picUrl}}" class="img" data-index="{{index}}"></image>
      </swiper-item>
    </block>
  </swiper>
  <view class="dots">
    <block wx:for="{{slider}}" wx:key="unique">
      <view class="dot {{index == swiperCurrent ? ‘ active‘ : ‘‘}}"></view>
    </block>
  </view>
</view> 

第三步:在js中创建图片列表,以便于进入页面的时候就会渲染图片。

      红色标注为,swiperChange方法中传入的参数用于三木运算符控制轮播图下面的圆点样式。

/**
   * 页面的初始数据
   */
  data: {
    slider:[
      {picUrl:‘../images/1.jpg‘},
      { picUrl: ‘../images/2.jpg‘ },
      { picUrl: ‘../images/3.jpg‘ }
    ],
    swiperCurrent:0,
  },
  //轮播 组件控制
  swiperChange:function(e){
    this.setData({
      swiperCurrent:e.detail.current
    })
  },

 

小程序--swiper轮播图组件

标签:function   slider   src   MinIP   detail   key   三元运算符   红色   ref   

原文地址:https://www.cnblogs.com/jiqk/p/9329063.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!