微信小程序 轮播图自定义光标的位置

如图

轮播图的光标可以用定位来改变上下左右的位置

wxml:

<!--start banner   -->
<swiper class='home-swiper' autoplay='true' bindchange='changDot' interval='4000'>
  <!-- 设置自动播放,切换间隔时间-->
  <swiper-item wx:for="{{slider}}" wx:for-index="index" wx:key="slider">
    <image src='{{item.img}}'></image>
  </swiper-item>
</swiper>
<!-- 轮播图光标 -->
<view class="dots">
  <block wx:for="{{slider}}" wx:key="slider">
    <view class="dot {{index == swiperCurrent?'actives':''}}"></view>
  </block>
</view>
<!-- end banner -->

wxss:

/* 轮播图图片尺寸 */

.home-swiper {
  width: 100%;
  height: 350rpx;
  position: relative;
}

.home-swiper image {
  width: 100%;
  height: 100%;
}

/* 轮播图指示点 */

.dots {
  display: flex;
  flex-direction: row;
  position: absolute;
  top: 311rpx;
  width: 100%;
  height: 50rpx;
  justify-content: center;
}

.dots .dot {
  width: 20rpx;
  height: 20rpx;
  /* background-color: #333; */
  /* border: 1rpx solid #e8672e; */
  margin-left: 12rpx;
  background: #fff;
  border-radius: 20rpx;
  /* transform: all 0.6; */
  opacity: 0.44;
}

/* 调用的css效果 */

.dots .actives {
  background-color: #fff;
  opacity: 1;
}

js:

Page({

  /**
   * 页面的初始数据
   */
  data: {
    swiperCurrent: 0,
    slider :[
      {'img':'/img/img/1.jpg'},
      { 'img': '/img/img/1.jpg' },
      { 'img': '/img/img/1.jpg' },
      { 'img': '/img/img/1.jpg' },
      { 'img': '/img/img/1.jpg' }
    ]
  },
  // 轮播图下标
  changDot(e) {
    this.setData({
      swiperCurrent: e.detail.current
    });
  },
  /**
   * 生命周期函数--监听页面加载
   */
  onLoad: function(options) {

  },

  /**
   * 生命周期函数--监听页面初次渲染完成
   */
  onReady: function() {

  },

  /**
   * 生命周期函数--监听页面显示
   */
  onShow: function() {

  },

  /**
   * 生命周期函数--监听页面隐藏
   */
  onHide: function() {

  },

  /**
   * 生命周期函数--监听页面卸载
   */
  onUnload: function() {

  },

  /**
   * 页面相关事件处理函数--监听用户下拉动作
   */
  onPullDownRefresh: function() {

  },

  /**
   * 页面上拉触底事件的处理函数
   */
  onReachBottom: function() {

  },

  /**
   * 用户点击右上角分享
   */
  onShareAppMessage: function() {

  }
})

 

评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值