Replies: 1 comment
-
Unfortunately, there is no easy solution. const main = new Splide( ... );
const thumbs = new Splide( ... );
main.mount();
thumbs.mount();
thumbs.on( 'click', Slide => {
main.go( Slide.index );
} );
main.on( 'move', index => {
thumbs.go( index );
} ); https://splidejs.com/guides/events/#click |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I would like to know if I can turn off the feature of a thumbnail navigation moving by itself after clicking an image in it, so that only manual dragging would move the navigation slider, instead of focusing itself.
Beta Was this translation helpful? Give feedback.
All reactions