在最后一张幻灯片之后,我的幻灯片放映反转幻灯片顺序,从第一张幻灯片开始,我希望它循环播放.. 我不知道在此代码中要更改什么,我是初学者。如果有人回答我将非常感谢...
//direction settings
if(opts.direction == 'right'){
cur = maxi; //starting from last slide
autoMove = opts.prev; //changing the auto-scroll direction
$(opts.slides).children().each(function(e){ //inverting the slide order
if(e = 0){
var child = $(this).detach();
$(opts.slides).prepend(child);
}
});
}