实现一个element走马灯效果
时间: 2023-09-12 16:10:05 浏览: 101
vue 实现走马灯效果
以下是一个基于Vue.js和Element UI实现的走马灯效果示例:
```html
<template>
<div class="carousel">
<el-carousel :interval="5000" arrow-size="40px">
<el-carousel-item v-for="(item, index) in items" :key="index">
<img :src="item.image" alt="">
<div class="carousel-caption">{{ item.caption }}</div>
</el-carousel-item>
</el-carousel>
</div>
</template>
<script>
export default {
data() {
return {
items: [
{
image: 'https://picsum.photos/id/1018/800/450',
caption: 'First slide'
},
{
image: 'https://picsum.photos/id/1015/800/450',
caption: 'Second slide'
},
{
image: 'https://picsum.photos/id/1019/800/450',
caption: 'Third slide'
}
]
}
}
}
</script>
<style scoped>
.carousel {
margin-top: 20px;
height: 450px;
position: relative;
}
.carousel-caption {
position: absolute;
bottom: 0;
left: 0;
width: 100%;
padding: 20px;
color: #fff;
background-color: rgba(0, 0, 0, 0.5);
}
</style>
```
在上述示例中,我们使用了Element UI的`el-carousel`和`el-carousel-item`组件来实现走马灯效果。`el-carousel`组件用于包含所有的轮播项,`el-carousel-item`组件用于每个轮播项的内容。我们通过`v-for`指令遍历一个数组`items`,然后为每个轮播项设置图片和标题。`interval`属性用于控制轮播的间隔时间,`arrow-size`属性用于设置箭头的大小。我们还为`carousel-caption`类设置了一些样式,用于显示轮播项的标题。
你可以根据自己的需求修改样式和内容。
阅读全文