Jquery image slider auto play

前端 未结 3 487
抹茶落季
抹茶落季 2020-12-18 16:46

I want to add an autoplay from my slider jquery section. What can i do this ?

I have a next & a prev button but I want to add an auto-play and also when mouse ho

3条回答
  •  Happy的楠姐
    2020-12-18 17:15

    I found the solution with this code:

    $(function(){
        setInterval(function () {
            moveRight();
        }, 3000);
      });
    

提交回复
热议问题