forked from opentiny/tiny-vue
38 lines
703 B
Vue
38 lines
703 B
Vue
<template>
|
|
<tiny-carousel height="150px" type="card">
|
|
<tiny-carousel-item class="carousel-item-demo" v-for="item in 4" :key="item">
|
|
<h3>{{ item }}</h3>
|
|
</tiny-carousel-item>
|
|
</tiny-carousel>
|
|
</template>
|
|
|
|
<script>
|
|
import { Carousel, CarouselItem } from '@opentiny/vue'
|
|
|
|
export default {
|
|
components: {
|
|
TinyCarousel: Carousel,
|
|
TinyCarouselItem: CarouselItem
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style scoped>
|
|
.tiny-carousel__item h3 {
|
|
color: #475669;
|
|
opacity: 0.75;
|
|
line-height: 150px;
|
|
margin: 0;
|
|
text-align: center;
|
|
font-size: 25px;
|
|
}
|
|
|
|
.carousel-item-demo:nth-child(2n) {
|
|
background-color: #fafafa;
|
|
}
|
|
|
|
.carousel-item-demo:nth-child(2n + 1) {
|
|
background-color: #edf0f3;
|
|
}
|
|
</style>
|