AnythingSlider - 如何使第一张幻灯片不被编号控件计数

发布于 2024-12-14 02:11:35 字数 101 浏览 2 评论 0原文

我正在使用 AnythingSlider 创建一个滑块,并且我需要在导航中不考虑第一张幻灯片:我需要从第二张幻灯片开始从 1 开始计数。有谁知道如何实现这一目标?

I'm creating a slider with AnythingSlider and I need the first slide not to be considered in navigation: I need the numbers to start counting from 1 from the second slide on. Does anyone know how to achieve this?

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

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

发布评论

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

评论(1

南笙 2024-12-21 02:11:35

只需使用 navigationFormatter 选项,如下所示:

$('#slider').anythingSlider({
  navigationFormatter : function(index, panel){
    return index + 1;
  }
});

然后,如果您使用的是最新版本从 github 中,您可以使用以下 css 隐藏第一个选项卡:

ul.thumbNav li.first { display: none; }

Just use the navigationFormatter option as follows:

$('#slider').anythingSlider({
  navigationFormatter : function(index, panel){
    return index + 1;
  }
});

Then if you are using the latest version from github, you could hide the first tab using this css:

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