如何使用jquery循环选择元素

发布于 2024-11-16 06:56:25 字数 196 浏览 3 评论 0原文

thumbnails.html:此页面包含 16 张图像。然后用户选择图像并加载新页面“display.htm”。在此页面上,我使用 jquery 循环,图像缓慢旋转。

我的问题是,我可以使用什么 jquery/cycle 语法,以便“循环”从正确的元素开始。假设用户单击第四个图像,我需要一种方法来确保循环从第四个图像开始。在我的示例中,我使用了 2 个页面。

thumbnails.html: This page contains 16 images. The user then select an image and a new page "display.htm" is loaded. On this page i am using jquery cycle and the images slowly rotate.

My question is, what jquery / cycle syntax can i use so that the "cycle" starts from the correct element. So let say the user clicks on the fourth image i need a way to ensure cycle starts at the fourth image. In my example i#m using 2 pages.

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

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

发布评论

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

评论(1

变身佩奇 2024-11-23 06:56:25

如果您需要它从第四个元素开始,只需在初始化插件时指定...

$('#gallery').cycle({ 
    startingSlide: 3
});

If you need it to start on the 4th element, just specify that when you initialize the plugin...

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