vue+elementui Carousel 走马灯 一次轮播4张图片

42 篇文章 0 订阅

vue

<el-carousel :loop="false" :autoplay="false" height="204px">
    <el-carousel-item class="el-car-item" v-for="(list, index) in dataList" :key="index">
       <img v-for="(imgList,index2) in list" :key="index2" class="top-img" :src="imgList.img" :alt="imgList.title" />
    </el-carousel-item>
</el-carousel>

后端返回数据

dataList: [
        {
          "title": "111",
          "url": "xxx",
          "img": "xxx"
        },
        {
          "title": "222",
          "url": "xxx",
          "img": "xxx"
        },
        {
          "title": "333",
          "url": "xxx",
          "img": "xxx"
        },
        {
          "title": "444",
          "url": "xxx",
          "img": "xxx"
        },
        {
          "title": "555",
          "url": "xxx",
          "img": "xxx"
        },
        {
          "title": "666",
          "url": "xxx",
          "img": "xxx"
        },
      ]

处理后端返回的数据

	let newDataList = []
    let current = 0
    if(this.dataList && this.dataList.length>0){
      for(let i=0;i<=this.dataList.length-1;i++){
        if(i%4 !== 0 || i === 0 ){
          if(!newDataList[current]){
            newDataList.push([this.dataList[i]])
          }else{
            newDataList[current].push(this.dataList[i])
          }
        }else{
          current++
          newDataList.push([this.dataList[i]])
        }
      }
    }
    this.dataList = [...newDataList]

css

.el-car-item {
    width: 100%;
    display: flex;
    .top-img{
      width: 284px;
      height: 184px;
      margin-right: 20px;
      cursor: pointer;
    }
  }
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 2
    评论
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值