gpt4 book ai didi

jquery - iScroll 自动循环?

转载 作者:行者123 更新时间:2023-12-01 06:55:44 25 4
gpt4 key购买 nike

有谁知道怎么做iScroll像旋转木马一样,有没有办法制作 iScroll自动在“ul”内循环?

因为我想在 iOS 上使用它,所以我一直在想办法..

非常感谢您抽出时间。

最佳答案

以下内容应该有效。

setInterval(function () {
myScroll.scrollToPage('next', 0, 400);
}, 2000);

您当然必须检查何时到达轮播的末尾 (curPageX)。

======

更新:在 iScroll 5 中,代码略有更改,您需要执行类似的操作来启动自动循环;同时可以选择在用户交互(触摸/滑动)后停止自动滚动。

/* start auto-scrolling */
myInterval = setInterval(autoScroll, 5000);

/* function handles the looping of the carousel */
function autoScroll() {
var currPage = myScroll.currentPage.pageX + 1;
if(currPage == myScroll.pages.length) {
myScroll.goToPage(0, 0, 250);
} else {
myScroll.goToPage(currPage, 0, 250);
}
}

/* stops auto-scrolling on swipe (using jQuery .on() method) */
myScroll.on('beforeScrollStart', function() {
clearInterval(myInterval);
});

希望对偶然发现此页面的人有所帮助!

关于jquery - iScroll 自动循环?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9271947/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com