我正在阅读有关如何制作翻转圆幻灯片的教程。
http://tympanus.net/codrops/2013/01/28/flipping-circle-slideshow/comment-page-2/
一切都很棒,但我想在自动播放时运行幻灯片这是我正在使用的代码但是运行不好我在初始化插件之前收到了教程中的代码,例如$(element).flipshow()
;您可以添加名为navigate的公共方法,然后在setInterval
函数中调用它。
$.Flipshow.prototype.navigate=function(element,direction){
this._navigate(element,direction);
};
$("#fcSlideshow").flipshow();
setInterval( function() {
$('#fcSlideshow').flipshow('navigate',$("#fcSlideshow div.fc-right span:first"),'right');
}, 3000);