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
there is an issue with when visible slides is 4 or more, slider should be move when click on arrow or bullets . issue occurs when last 2,3 bullets.
when i go to last. slide that is visible the arrow did'nt show that it is last slide because it moves one by one slide and it connot hide arrows on edges until unless it go through the last slide
in my case i have 15 slides and visible slides is 4 and 5th one is half
i have use slice method so that on 1st click it goes to next slide and remove last 2 bullets so that when go to end the bullet active will be last
i know this approach is not good but i con't find the proper solution yet.
The text was updated successfully, but these errors were encountered:
there is an issue with when visible slides is 4 or more, slider should be move when click on arrow or bullets . issue occurs when last 2,3 bullets.
when i go to last. slide that is visible the arrow did'nt show that it is last slide because it moves one by one slide and it connot hide arrows on edges until unless it go through the last slide
in my case i have 15 slides and visible slides is 4 and 5th one is half
bullets:
<template #bullets="{ bulletIndexes, goToSlide, currentSlide }">
<span
v-for="(slideIndex, i) in bulletIndexes.slice(2, -2)"
:key="i"
class="rounded-full w-3 h-3 text-white"
:class="[
currentSlide === slideIndex
? ' bg-white'
: 'bg-transparent border border-white',
]"
@click="goToSlide(slideIndex)"
>
i have use slice method so that on 1st click it goes to next slide and remove last 2 bullets so that when go to end the bullet active will be last
i know this approach is not good but i con't find the proper solution yet.
The text was updated successfully, but these errors were encountered: