Show the last slide on the left

Anyway to have a carousel type slider where the last slide shows on the left, so there is no beginning and no end?

Like this:


Here is my site Read-Only: LINK
(how to share your site Read-Only link)

1 Like

Hey @Apiant

I think this post can help you > Unique slider layout?

Piter :webflow_heart:

Hi @Apiant!

I think this snippet code added on <body> could help you:

</script><script>
$(document).ready(function() {
    $('#slider-id div:nth-child(2)').trigger('tap');
});
</script> 

You just have to set and id for you slider and update it here:

Eve Kayser