JCarousel 环绕设置为“圆形”漏洞
我正在尝试设置一个 JCarousel 实例,并将换行设置为圆形,但是,我注意到一个问题,即我在 Chrome 中“检查元素”,重复的
元素被添加到 html 中当幻灯片重复时(可以在官方示例页面上查看)。http://sorgalla.com/projects/jcarousel/examples/static_circular.html
我知道这是 GitHub 上的一个未解决的错误。我只是想知道是否有人找到了临时解决方法。
I'm trying to set up a JCarousel instance with the wrap set to circular, however, I noticed an issue where I "inspect element" in Chrome, duplicate <li>
elements are added to the html when the slides repeat (it can be viewed on the official example page).
http://sorgalla.com/projects/jcarousel/examples/static_circular.html
I know this is an open bug on GitHub. I'm just wondering if anyone has found a temporary workaround.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
我通过在 css 中给 li 项目明确的宽度和高度来解决这个问题
i solve it with giving the li items explicit width and height in the css
我以前也遇到过同样的错误,并且没有看到任何有用的评论,所以我想我会建议一个“更好”的插件。尝试 jQuery Cycle 插件。为我工作!
I had the same bug before, and didn't see any helpful comments, so I thought I'd suggest a "better" plugin. Try jQuery Cycle Plugin. Worked for me!
我赢得了无限重复
只需添加样式即可
I won infinite duplicating
<li>
Just add style
在 jcarousellite 脚本文件中将循环:true 更改为 false 或
将此参数添加到您的脚本中,如下所示
$(".class").jCarouselLite({circular: false});
in the jcarousellite script file change the circular: true, to false or
add this parameter to your script as below
$(".class").jCarouselLite({circular: false});