小程序之轮播图实现

效果图:
在这里插入图片描述
js代码实现

Page({
  data: {
    //轮播图
    indicatorDots: true,//显示面板指示点
    autoplay: true,//自动切换
    interval: 3000,//自动切换时间间隔
    duration: 800,//滑动动画时长
    circular: true,//采用衔接滑动
    indicatorColor:"#ffdfdc",//指示点颜色
    indicatoraAactive:"#ff948a",//当前选中的指示点颜色
  },
  swiperChange: function (e) { 
    this.setData({
      swiperCurrent: e.detail.current
    })
  },
  chuangEvent: function (e) {
    this.setData({
      swiperCurrent: e.currentTarget.id
    })
  },
  swipclick: function (e) {
    console.log(this.data.swiperCurrent);
    wx.switchTab({
      url: this.data.links[this.data.swiperCurrent]
    })
  },
})

wxml实现

<view>
  <!--轮播图-->
  <!--设置自动切换,切换时间为1s,显示面板指示点;切换缓动动画类型,动画从头到尾的速度是相同的-->
  <swiper autoplay interval='1000' circular="true" indicator-dots="true" easing-function="linear">
    <swiper-item>
        <image mode="widthFix" src="/images/1.png" />  
    </swiper-item>
    <swiper-item>
        <image mode="widthFix" src="/images/2.png" />  
    </swiper-item>
    <swiper-item>
        <image mode="widthFix" src="/images/3.png" />  
    </swiper-item>
</swiper>
</view>

less实现

swiper {
  height: 400rpx;
  } 
  swiper-item image {
  width: 100%;
  height: 100%;
  }
  .swiper-container{
  //生成相对定位的元素,通过top,bottom,left,right的设置相对于其正常位置进行定位。可通过z-index进行层次分级。
  position: relative;
  //margin-top:功能为设置元素的上外边距,允许使用负值。定义固定的上外边距。默认值是 0。
  //margin-top是你这个层的边距设置,是上边距,top是当css样式为绝对定位(即position:absolute; )时,left , right , top , bottom 等属性相对于其最接近的一个最有定位设置的父对象进行绝对定位
  margin-top:-300rpx;
  }
  .swiper-container .swiper{
  height: 300rpx;
  }
  .swiper-container .swiper .img{
  width: 90%;
  height: 100%;
  margin: 0 5%;
  border-radius: 20rpx;
  }
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

眼里只有码

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值