You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We are controlling the flags in the "@slide-change-end" event to animate transitions for internal items when switching to each slide.
Slides other than the first slide are normally controlled according to the flag. In the case of the first slide, two components are created internally and the animation is not normally applied.
And for debugging, I gave each component an id, but the first element does not have an id binding, and only the last element of the first slide is bound to id.
How do I resolve this?
example
slider.banner-wrapper(ref="slider" direction="horizontal" :mousewheel-control="false" :performance-mode="true" :pagination-visible="true" :pagination-clickable="true" :loop="true" :speed="1000" :auto="true" :interval="5000" @slide-change-start="onSlideChangeStart" @slide-change-end="onSlideChangeEnd")
.banner.banner-1
transition(name="fade-slide")
.text-wrapper(v-show="textFlag.banner1" id="textFlag.banner1")
h1 {{ TITLE }}
p {{ CONTENTS }}
.banner.banner-2
transition(name="fade-slide")
.text-wrapper(v-show="textFlag.banner2" id="textFlag.banner2")
h1 {{ TITLE }}
p {{ CONTENTS }}
.banner.banner-3
transition(name="fade-slide")
.text-wrapper(v-show="textFlag.banner3" id="textFlag.banner3")
h1 {{ TITLE }}
p {{ CONTENTS }}
We are controlling the flags in the "@slide-change-end" event to animate transitions for internal items when switching to each slide.
Slides other than the first slide are normally controlled according to the flag. In the case of the first slide, two components are created internally and the animation is not normally applied.
And for debugging, I gave each component an id, but the first element does not have an id binding, and only the last element of the first slide is bound to id.
How do I resolve this?
example
...
The text was updated successfully, but these errors were encountered: