jQuery 工具可滚动

发布于 2024-11-28 14:15:57 字数 429 浏览 2 评论 0原文

我觉得这已经得到回答和实施,但我无法找出正确的术语或关键字来找到它。

我在这里使用 Scrollable 作为某种子导航: http://www.thepit-raleigh.com/press/

它一次显示 5 个项目时间。当我位于给定页面上时,如何使可滚动中的当前页面的链接/图像可见。

例如,第 6 页/链接 (http://www.thepit-raleigh.com/ press/herald-sun/) 目前在该页面上不显示,因为它是可滚动项中的第 6 个项目。

提前致谢, 基弗

I feel like this has already been answered and implemented, but I cannot figure out the right terms or keywords to find it.

I'm using Scrollable as a subnav of sorts here:
http://www.thepit-raleigh.com/press/

It shows 5 items at a time. How do I make it that the current page's link/image in the scrollable is visible when I'm on that given page.

Example, the 6th page/link (http://www.thepit-raleigh.com/press/herald-sun/) currently does not show when on that page as it's the 6th item in the scrollable.

Thanks in advance,
Keefer

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

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

发布评论

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

评论(1

痴情 2024-12-05 14:15:57

您应该能够使用 seekTo(index, speed) 函数。例如:

<script>
    $(window).load(function() {
        var api = $(".subnavScrollable").data("scrollable");
        api.seekTo(5, 1000);    
    });
</script>

You should be able to use the seekTo(index, speed) function. eg:

<script>
    $(window).load(function() {
        var api = $(".subnavScrollable").data("scrollable");
        api.seekTo(5, 1000);    
    });
</script>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文