mirror of
https://github.com/element-plus/element-plus.git
synced 2024-11-27 02:01:15 +08:00
27 lines
488 B
Vue
27 lines
488 B
Vue
|
<template>
|
||
|
<el-carousel indicator-position="outside">
|
||
|
<el-carousel-item v-for="item in 4" :key="item">
|
||
|
<h3>{{ item }}</h3>
|
||
|
</el-carousel-item>
|
||
|
</el-carousel>
|
||
|
</template>
|
||
|
|
||
|
<style scoped>
|
||
|
.el-carousel__item h3 {
|
||
|
color: #475669;
|
||
|
font-size: 18px;
|
||
|
opacity: 0.75;
|
||
|
line-height: 300px;
|
||
|
margin: 0;
|
||
|
text-align: center;
|
||
|
}
|
||
|
|
||
|
.el-carousel__item:nth-child(2n) {
|
||
|
background-color: #99a9bf;
|
||
|
}
|
||
|
|
||
|
.el-carousel__item:nth-child(2n + 1) {
|
||
|
background-color: #d3dce6;
|
||
|
}
|
||
|
</style>
|