35 lines
1.0 KiB
Vue
35 lines
1.0 KiB
Vue
<script setup lang="ts">
|
|
import { Card, CardContent } from '@/lib/registry/new-york/ui/card'
|
|
import { Carousel, CarouselContent, CarouselItem, CarouselNext, CarouselPrevious } from '@/lib/registry/new-york/ui/carousel'
|
|
import Autoplay from 'embla-carousel-autoplay'
|
|
|
|
const plugin = Autoplay({
|
|
delay: 2000,
|
|
stopOnMouseEnter: true,
|
|
stopOnInteraction: false,
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<Carousel
|
|
class="relative w-full max-w-xs"
|
|
:plugins="[plugin]"
|
|
@mouseenter="plugin.stop"
|
|
@mouseleave="[plugin.reset(), plugin.play(), console.log('Running')];"
|
|
>
|
|
<CarouselContent>
|
|
<CarouselItem v-for="(_, index) in 5" :key="index">
|
|
<div class="p-1">
|
|
<Card>
|
|
<CardContent class="flex aspect-square items-center justify-center p-6">
|
|
<span class="text-4xl font-semibold">{{ index + 1 }}</span>
|
|
</CardContent>
|
|
</Card>
|
|
</div>
|
|
</CarouselItem>
|
|
</CarouselContent>
|
|
<CarouselPrevious />
|
|
<CarouselNext />
|
|
</Carousel>
|
|
</template>
|