谁能帮助我让这个画廊自动旋转?
Jquery Tools Scrollable
http://flowplayer.org/tools/demos/scrollable/gallery.html
非常感谢!
维克
答案 0 :(得分:0)
我认为你必须自己做一个计时器,这样的事情应该这样做:
function auto_next() {
$('#scroller').data('scrollable').next();
setTimeout(auto_next, 1000); // 1000 == one second
}
auto_next();
你也可以使用setInterval
但是你会冒着定时事件相互超越的风险。
参考文献: