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.
在这个链接
自动播放会跳过最后一张幻灯片。同样,当单击最后一张幻灯片时,自动播放会停止并且不会继续到第一张。
是否可以在自动播放时,幻灯片保留在框中并自动滚动。截至目前,幻灯片在第五张幻灯片后消失在滚动条中。我们可以让当前幻灯片在框中始终可见吗?
请帮忙。
在您的代码中:而不是 i++,使用选定类的 cn_item 的当前索引更改它。它应该是这样的:
function next() { i = $('.cn_item').index($('.selected')) + 1; if(i== $('.cn_item.selected').parent().children().length){ x=1;
那应该可以解决所有问题。