How to modify Elastislide so it loops infinitely

后端 未结 7 1204
庸人自扰
庸人自扰 2021-01-21 08:42

I\'ve been searching for an image carousel that will display several images at once, is responsive and loops infinitely.

Elastislide seems to be the most suitable ( http

7条回答
  •  渐次进展
    2021-01-21 09:24

    Add this code in the _initEvents function after - var instance = this; to make the elastislide autoplay.

    window.setInterval(function(){
                    instance._slide('right');
                }, 7000);
    

提交回复
热议问题