如何循环基于 iScroll 4 的轮播?

发布于 2025-01-02 03:52:54 字数 217 浏览 1 评论 0原文

我创建了一个基于 iScroll 的轮播。

在这里查看小提琴... http://jsfiddle.net/manseuk/r9VL2/2/

当你到达第四个列表元素时,它就停止了。是否可以添加一些代码以便它循环回到第一个列表元素?

提前致谢

I've created a iScroll based carousel.

See fiddle here... http://jsfiddle.net/manseuk/r9VL2/2/

At the moment when you get to the fourth list element, it stops. Is it possible to add some code so it loops back to the first list element?

Thanks in advance

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

寂寞美少年 2025-01-09 03:52:54

这是 myScroll1 的下一个/上一个按钮的快速示例。将它们的 onclick 替换为以下函数:

function next(){
    snapNum = document.querySelectorAll('#indicator1 > li').length;
    if(myScroll1.currPageX+1 == snapNum){
        myScroll1.scrollToPage(0, 0);
    }else{
        myScroll1.scrollToPage('next', 0);
    }
}

function prev(){
    snapNum = document.querySelectorAll('#indicator1 > li').length;
    if(myScroll1.currPageX+1 == 1){
        myScroll1.scrollToPage(snapNum, 0);
    }else{
    myScroll1.scrollToPage('prev', 0);
    }
}

它们获取要捕捉的 li 的长度。然后,如果您位于最后,则返回到第一个。如果您在第一个,则转到最后一个。

当然,这可以变得更通用、更少,但我会留给你。

Here a quick sample for the next/prev buttons of myScroll1. Replace their onclick with these functs:

function next(){
    snapNum = document.querySelectorAll('#indicator1 > li').length;
    if(myScroll1.currPageX+1 == snapNum){
        myScroll1.scrollToPage(0, 0);
    }else{
        myScroll1.scrollToPage('next', 0);
    }
}

function prev(){
    snapNum = document.querySelectorAll('#indicator1 > li').length;
    if(myScroll1.currPageX+1 == 1){
        myScroll1.scrollToPage(snapNum, 0);
    }else{
    myScroll1.scrollToPage('prev', 0);
    }
}

They get the length of li's to snap. Then if you are on the last, goes back to first. If you are on first, goes to last.

Of course this can be made more general and less stuff, but i'll leave to you.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文