Hello! Help put the delay between transitions in the Swiper slider. The task is this, after pressing the button forwards, backwards or scrolling with the mouse, the slide should wait for example 3000ms, and only then change. This is necessary for the animation to play. Here is the slider: https://codepen.io/anakin-skywalker94/pen/qGvEwq Thank!
I'd say you need to go through the api settings and see if there's an option http://idangero.us/swiper/api/ or ask at their forum You'll probably find you need to add some code into a renderCustom clause
According to the documents of Swiper Slider you move to the next slide by this code: mySwiper.slideNext(); Code (markup): If you want to delay it by 3000 milliseconds then use .setTimeout() method of JavaScript: setTimeout(function(){ mySwiper.slideNext(); }, 3000); Code (markup):