Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Foundation 3 中的 Orbit 滑块是无限的,这意味着它会一遍又一遍地在其幻灯片中循环。
有没有办法让它只显示一次所有幻灯片,在最后一张幻灯片上停止?
提供了一个方法(实际上存在于引用的文档@cuberoot 中),这是初始化代码:
$(window).load(function(){ $("#featured").orbit({ singleCycle: true // cycles through orbit slides only once }); });
我会用 afterSlideChange 注册一个函数,检查它是否是最后一张幻灯片,然后调用 orbit.stopClock()