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.
据我了解,Orbit 曾经有一个选项singleCycle: true,因此它不会连续循环。我们如何在 Foundation 4 中做到这一点(最好不要破解核心)?
singleCycle: true
选项中包含这将是一件好事,而且看起来它正在被解决。
在那之前,您可以添加一些 JS 来解决问题,而无需破解核心。这是您要添加的 JS:
$("ul[data-orbit]").on("orbit:after-slide-change", function(event, orbit) { if (orbit.slide_number==$(this).children().length-2) { self._stop_timer(); } });
这是一个有效的JSFiddle。