当前位置:   article > 正文

ElementUi轮播图走马灯添加图片_element走马灯如何添加图片

element走马灯如何添加图片

ElementUi轮播图走马灯添加图片

官网例子

这里我们拿官网的例子作为讲解
链接: 官网.
代码

<template>
  <el-carousel :interval="4000" type="card" height="200px">
   <!--此处注意,v-for 是一个固定的数,要想显示图片,我们就应该让item循环一个ImageList -->
    <el-carousel-item v-for="item in 6" :key="item">
      <h3 class="medium">{{ item }}</h3>
    </el-carousel-item>
  </el-carousel>
</template>

<style>
  .el-carousel__item h3 {
    color: #475669;
    font-size: 14px;
    opacity: 0.75;
    line-height: 200px;
    margin: 0;
  }
  
  .el-carousel__item:nth-child(2n) {
    background-color: #99a9bf;
  }
  
  .el-carousel__item:nth-child(2n+1) {
    background-color: #d3dce6;
  }
</style>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26

改造适用

从官网中我们可知,要想显示图片,item循环的List中就必须要是个图片的List。因此我们在data中定义一个图片的List集合(后台传同理)。

<template>
    <div class="index">
        <!-- 跑马灯  -->
        <div>   
            <el-carousel :interval="4000" type="card" height="200px">
                <el-carousel-item v-for="item in imgList" :key="item.id">
                     <img :src="item.idView" class="image">
                </el-carousel-item>
            </el-carousel>
        </div>
    </div>
</template>

<script>
export default {
    name: 'index',
    data(){
        return {
            imgList: [
                {id:0,idView:'./static/image/monster/dog.jpg'},
                {id:1,idView:'./static/image/monster/lion.jpg'},
                {id:2,idView:'./static/image/monster/snake.jpg'},
                {id:3,idView:'./static/image/monster/tree.jpg'}            
            ]
        };
        },
    methods: { 
    }
}
</script>
<style>
  .index{
    background: #c8cfd8;
    width: 80%;
    text-align: center;
    margin-left: 142px;
    width: 80.6%;
    
  }
  .el-carousel__item h3 {
    color: #475669;
    font-size: 14px;
    opacity: 0.75;
    line-height: 200px;
    margin: 0;
  }
  
  .el-carousel__item:nth-child(2n) {
    background-color: #99a9bf;
  }
  
  .el-carousel__item:nth-child(2n+1) {
    background-color: #d3dce6;
  }
</style>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55

注意:

//image中的url,当为当前项目的静态文件时,在本项目下的静态图片。
{id:0,idView:'./static/image/monster/dog.jpg'},
//为动态路径时
{id:0,idView:require("@/assets/images/fk.jpg")},

  • 1
  • 2
  • 3
  • 4
  • 5

注意:跑马灯的图片尽量尺寸一致,可以通过工具将图片缩放至同一尺寸。

效果

在这里插入图片描述

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/盐析白兔/article/detail/250971
推荐阅读
相关标签