Reputation: 152
I need to build a vertical carousel like the one in the image, where I'm able to scroll and use touch. When the active slide is clicked, the user is redirected else it scrolls to to the element.
Any tips for libraries that can help me achieve this?
Thanks in advance!
Upvotes: 1
Views: 4178
Reputation: 152
I ended up making the carousel myself following this tutorial:
How to build a carousel from scratch in vanilla js
It uses CSS3 animations to move the elements and javascript to swap classes to trigger the animations.
Upvotes: 1