Only load timeline in active slide

This commit is contained in:
Freeplay 2023-05-25 19:32:56 -04:00
parent 6383babe04
commit 30beffab78
2 changed files with 8 additions and 0 deletions

View File

@ -44,6 +44,9 @@
" "
@swiper="setSwiperRef" @swiper="setSwiperRef"
@slide-change="onSlideChange" @slide-change="onSlideChange"
:touch-angle="25"
:threshold="10"
:centeredSlides="true"
> >
<swiper-slide <swiper-slide
v-for="index in timelines" v-for="index in timelines"
@ -51,6 +54,7 @@
:virtual-index="index" :virtual-index="index"
> >
<XTimeline <XTimeline
v-if="index == timelines[swiperRef.activeIndex]"
ref="tl" ref="tl"
:key="src" :key="src"
class="tl" class="tl"

View File

@ -113,6 +113,10 @@ html, body {
padding: 0; padding: 0;
} }
.swiper-slide {
height: unset !important;
}
a { a {
text-decoration: none; text-decoration: none;
cursor: pointer; cursor: pointer;