滑块库上的自动滚动

发布于 2024-11-09 06:47:44 字数 173 浏览 0 评论 0 原文

我有这个画廊的例子,我是 jQuery 的新手。我想知道,是否有办法实现此图像的自动滚动...

http://tympanus。网/教程/SliderGallery/

i have this example of gallery, and i'm new on jQuery. I want to know, if theres a way to implement an autoscrolling of this images....

http://tympanus.net/Tutorials/SliderGallery/

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

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

发布评论

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

评论(1

软的没边 2024-11-16 06:47:44

假设您有函数 next()prev() 来使用按钮滚动图像。如果您想要自动滚动,根据您上面所写的内容,您可以通过 setTimeout 函数使用计时器,如下所示:

window.setTimeout(next, 5000);

这将每 5 秒滚动到下一张图像。现在,如果您位于画廊的末尾,您可以编写一些逻辑来确定这一点,然后返回到开头或按相反的顺序进行。

但是,因为这样的事情可能涉及逻辑,所以我强烈建议使用第三方 jQuery 插件,例如 Nivo 滑块...

lets say you have functions next() and prev() to scroll the images with the buttons. if you want to autoscroll, based on what you've written above, you would use a timer via the setTimeout function like so:

window.setTimeout(next, 5000);

This would scroll to the next image every 5 seconds. Now, if you're at the end of the gallery, you could write some logic to determine that and go back to the beginning or go in the reverse order.

However, Because there can be a logic involved in something like this, I would highly recommend using a third-party jQuery plug-in such as Nivo Slider...

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