如何制作Jcoverflip循环?

发布于 2024-12-11 18:54:26 字数 175 浏览 0 评论 0原文

我搜索并发现了与我的问题类似的问题,但是没有一个有我需要的具体解决方案。我目前的 Jcoverflip 没有滚动条或任何下一个/上一个按钮...我想要完成的是...悬停时,让图库滚动,当它到达末尾时它会循环而不是一直滚动向后。我目前是 javascript/Jquery 的新手,希望得到任何帮助。如果您有任何替代脚本,我愿意接受建议。

I searched and found questions similar to my question, however none has the specific solution I need. I currently have Jcoverflip without the scroll bar or any next/prev buttons... what I would like to accomplish is... on hover, have the gallery scroll and when it reaches to the end it loops instead of having scroll all the way backwards. I'm currently new to javascript/Jquery and would appreciate any help..also if you have any alternative scripts in mind, I am open to suggestions.

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

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

发布评论

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

评论(1

沐歌 2024-12-18 18:54:26

我不认为 Jcoverflip 确实提供了开箱即用的此功能。我想到的一件事是尝试绑定到更改事件并将第一项添加到列表中,如下所示:

$('#flip').jcoverflip({
  ...
  change: function(){ $('#flip li:first').appendTo('#flip'); },
  ...
});

我没有尝试此代码,但它可能会根据 Jcoverflips 实现而起作用。

I do not think that Jcoverflip does provide this functionality out of the box. One thing, that came in my mind, was to try to bind to the change event and appending the first item to the list like this:

$('#flip').jcoverflip({
  ...
  change: function(){ $('#flip li:first').appendTo('#flip'); },
  ...
});

I did not try out this code, but it may work depending on Jcoverflips implementation.

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