card.vue 512 B

12345678910111213141516171819202122232425
  1. <template>
  2. <el-carousel :interval="4000" type="card" height="200px">
  3. <el-carousel-item v-for="item in 6" :key="item">
  4. <h3 text="2xl" justify="center">{{ item }}</h3>
  5. </el-carousel-item>
  6. </el-carousel>
  7. </template>
  8. <style scoped>
  9. .el-carousel__item h3 {
  10. color: #475669;
  11. opacity: 0.75;
  12. line-height: 200px;
  13. margin: 0;
  14. text-align: center;
  15. }
  16. .el-carousel__item:nth-child(2n) {
  17. background-color: #99a9bf;
  18. }
  19. .el-carousel__item:nth-child(2n + 1) {
  20. background-color: #d3dce6;
  21. }
  22. </style>