110 lines
2.4 KiB
Vue
110 lines
2.4 KiB
Vue
<template>
|
||
<div>
|
||
<n-card title="Swiper插件" class="shadow-sm rounded-16px">
|
||
<n-space :vertical="true">
|
||
<github-link link="https://github.com/nolimits4web/swiper" />
|
||
<web-site-link label="vue3版文档地址:" link="https://swiperjs.com/vue" />
|
||
<web-site-link label="插件demo地址:" link="https://swiperjs.com/demos" />
|
||
</n-space>
|
||
<n-space :vertical="true">
|
||
<div v-for="item in swiperExample" :key="item.id">
|
||
<h3 class="py-24px text-24px font-bold">{{ item.label }}</h3>
|
||
<swiper v-bind="item.options">
|
||
<swiper-slide v-for="i in 5" :key="i">
|
||
<div class="flex-center h-240px border-1px border-[#999] text-18px font-bold">Slide{{ i }}</div>
|
||
</swiper-slide>
|
||
</swiper>
|
||
</div>
|
||
</n-space>
|
||
</n-card>
|
||
</div>
|
||
</template>
|
||
|
||
<script setup lang="ts">
|
||
import SwiperCore, { Navigation, Pagination } from 'swiper';
|
||
import { Swiper, SwiperSlide } from 'swiper/vue';
|
||
import type { SwiperOptions } from 'swiper';
|
||
|
||
type SwiperExampleOptions = Pick<
|
||
SwiperOptions,
|
||
'navigation' | 'pagination' | 'scrollbar' | 'slidesPerView' | 'slidesPerGroup' | 'spaceBetween' | 'direction' | 'loop'
|
||
>;
|
||
|
||
interface SwiperExample {
|
||
id: number;
|
||
label: string;
|
||
options: Partial<SwiperExampleOptions>;
|
||
}
|
||
|
||
SwiperCore.use([Navigation, Pagination]);
|
||
|
||
const swiperExample: SwiperExample[] = [
|
||
{ id: 0, label: 'Default', options: {} },
|
||
{
|
||
id: 1,
|
||
label: 'Navigation',
|
||
options: {
|
||
navigation: true
|
||
}
|
||
},
|
||
{
|
||
id: 2,
|
||
label: 'Pagination',
|
||
options: {
|
||
pagination: true
|
||
}
|
||
},
|
||
{
|
||
id: 3,
|
||
label: 'Pagination dynamic',
|
||
options: {
|
||
pagination: { dynamicBullets: true }
|
||
}
|
||
},
|
||
{
|
||
id: 4,
|
||
label: 'Pagination progress',
|
||
options: {
|
||
navigation: true,
|
||
pagination: {
|
||
type: 'progressbar'
|
||
}
|
||
}
|
||
},
|
||
{
|
||
id: 5,
|
||
label: 'Pagination fraction',
|
||
options: {
|
||
navigation: true,
|
||
pagination: {
|
||
type: 'fraction'
|
||
}
|
||
}
|
||
},
|
||
{
|
||
id: 6,
|
||
label: 'Slides per view',
|
||
options: {
|
||
pagination: {
|
||
clickable: true
|
||
},
|
||
slidesPerView: 3,
|
||
spaceBetween: 30
|
||
}
|
||
},
|
||
{
|
||
id: 7,
|
||
label: 'Infinite loop',
|
||
options: {
|
||
navigation: true,
|
||
pagination: {
|
||
clickable: true
|
||
},
|
||
loop: true
|
||
}
|
||
}
|
||
];
|
||
</script>
|
||
|
||
<style scoped></style>
|