mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-14 09:20:51 +08:00
40 lines
917 B
Vue
40 lines
917 B
Vue
|
<template>
|
||
|
<div class="block">
|
||
|
<span class="demonstration"
|
||
|
>Switch when indicator is hovered (default)</span
|
||
|
>
|
||
|
<el-carousel height="150px">
|
||
|
<el-carousel-item v-for="item in 4" :key="item">
|
||
|
<h3 class="small">{{ item }}</h3>
|
||
|
</el-carousel-item>
|
||
|
</el-carousel>
|
||
|
</div>
|
||
|
<div class="block">
|
||
|
<span class="demonstration">Switch when indicator is clicked</span>
|
||
|
<el-carousel trigger="click" height="150px">
|
||
|
<el-carousel-item v-for="item in 4" :key="item">
|
||
|
<h3 class="small">{{ item }}</h3>
|
||
|
</el-carousel-item>
|
||
|
</el-carousel>
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<style scoped>
|
||
|
.el-carousel__item h3 {
|
||
|
color: #475669;
|
||
|
font-size: 14px;
|
||
|
opacity: 0.75;
|
||
|
line-height: 150px;
|
||
|
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>
|