Hello, by default the images move from right to left. I want to reverse the direction and make it move from left to right.
How to do it?
Note: I’m using it in loop and auto play
Hello, by default the images move from right to left. I want to reverse the direction and make it move from left to right.
How to do it?
Note: I’m using it in loop and auto play
It is possible but not without code. Last time I had a request like this, we ended up taking WeWeb’s code and extending it which takes some time.
Your best bet would be to look up the Swiper documentation, (WeWeb’s slider is built on top of Swiper.js) and use this to get the Swiper instance and update it:
let swiper = wwLib.getFrontDocument().querySelector('.swiper').swiper
// This gives you access to your swiper instance, you should be able to use the methods
swiper.update();
Thank you very much. I don’t know how to do this, but I’ll look into it. Thank you for your time