forked from opentiny/tiny-vue
31 lines
636 B
Vue
31 lines
636 B
Vue
<template>
|
|
<tiny-carousel height="150px">
|
|
<tiny-carousel-item class="carousel-item-demo" v-for="item in 4" :key="item">
|
|
<h3>{{ item }}</h3>
|
|
</tiny-carousel-item>
|
|
</tiny-carousel>
|
|
</template>
|
|
|
|
<script setup>
|
|
import { TinyCarousel, TinyCarouselItem } from '@opentiny/vue'
|
|
</script>
|
|
|
|
<style scoped>
|
|
.tiny-carousel__item h3 {
|
|
color: #808080;
|
|
opacity: 0.75;
|
|
line-height: 150px;
|
|
margin: 0;
|
|
text-align: center;
|
|
font-size: 25px;
|
|
}
|
|
|
|
.carousel-item-demo:nth-child(2n) {
|
|
background-color: rgba(221, 221, 221, 0.2);
|
|
}
|
|
|
|
.carousel-item-demo:nth-child(2n + 1) {
|
|
background-color: rgba(221, 221, 221, 0.1);
|
|
}
|
|
</style>
|