@samliew tutorial is really well made and probably would be the most flexible starting point.
I did quite recently 2 video tutorials to make custom sliders without any custom code in Webflow. You could turn most of the tricks in these to achieve what you are trying to achieve.
Thank you so much!!! I’ve added this snippet following your advice in your post regarding the linking of two sliders.
var Webflow = Webflow || [];
Webflow.push(function () {
// Cache references to nav elements
var sourceNav = $('#sourceNav');
var targetNav = $('#targetNav');
var currentSlide = 0;
// Every 200ms
setInterval(function() {
// Find the index of source slideNav button's active class
var index = sourceNav.children('.w-active').index();
// Prevent tap on current
if(index !== currentSlide){
// Update target slider by triggering a "tap" event on the targetNav corresponding slide button
targetNav.children().eq(index).trigger('tap');
currentSlide = index;
}
}, 200); // End interval