Gallery Slideshow

Question:
How do you make a gallery slideshow rotate automotically without having a user press the arrow buttons?

Product:
Wix Studio Studio

What are you trying to achieve:
I’m trying to create a slideshow gallery that automitcally rotates. The documentation online says that it’s an option but the setting isn’t where it’s supposed to be according to it.

What have you already tried:
Accroding to the documention you load the slideshow>setting>layout>customize layout>slide automatically. but there is no “customize layout” nor can I find “slide automatically” anywhere.

Additional information:

Hi, @Sasha_Taitz !!

If you can’t find an option in the editor to achieve that behavior, try adding a simple piece of code like the one below—it should help you accomplish it. I’ve also included a link to the relevant reference for your convenience. :innocent:


$w.onReady(function () {

    setInterval(() => {
        $w("#slideshow").next();
    }, 3000);

});

Thanks. I haven’t used velo at all but I’ll give it a try.

I see. Got it. Some of the information might be a bit outdated, but I think you’ll be able to get the hang of it if you start by reading through the reference here. Good luck! :flexed_biceps: