Simple Slider (swiper) autoplay works too fast ! how to fix it !?

Hello people i need your help,

Am using the Simple Slider (swiper) on my new project created with Bootstrap Studio, it works but when am trying to make it to autoplay then its not working, its goes to fast !!!

$(function(){

    // Initializing the swiper plugin for the slider.
    // Read more here: http://idangero.us/swiper/api/

    var mySwiper = new Swiper ('.swiper-container', {
        loop: true,  
        pagination: '.swiper-pagination',
        paginationClickable: true,   
        nextButton: '.swiper-button-next',
        prevButton: '.swiper-button-prev',
   autoplay: {
delay: 5000,
},
});     

});

How to fix this ?

I tried to change delay value but every value am setting is working wrong.. its working to fast.........

Am very disappointment......... can someone please help me to make the slider work normal !?

Thanks...

Remove

 autoplay: {
delay: 5000,
},

and add

 autoplay: 4000

There is a discussion here about it

Thanks a lot Windy, that solved the problem !

You're welcome :-)