Progress bar pagination for each slide? #524
Unanswered
macca-droid
asked this question in
Q&A
Replies: 1 comment 5 replies
-
Yes, but you have to write some scripts, using some events: The idea is like this: let activeBar;
splide.on( 'autoplay:playing', rate => {
// update the bar width here
} );
splide.on( 'active', () => {
// reset all bars and switch the active bar element
} ); |
Beta Was this translation helpful? Give feedback.
5 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
As opposed to pagination dots is it possible to have multiple progress bars?
I know you can have one progress bar in view and this works well but what I would like is, for example, on a 4 slide carousel the ability to show 4 progress bars with the current .active one animating - very much like Instagram Stories?
Thank you!
Beta Was this translation helpful? Give feedback.
All reactions