JCarousel 环绕设置为“圆形”漏洞

发布于 2024-10-16 01:54:01 字数 375 浏览 5 评论 0原文

我正在尝试设置一个 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 技术交流群。

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

    发布评论

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

    评论(4

    长亭外,古道边 2024-10-23 01:54:02

    我通过在 css 中给 li 项目明确的宽度和高度来解决这个问题

    .jcarousel-item {width:200px;height:200px;}
    

    i solve it with giving the li items explicit width and height in the css

    .jcarousel-item {width:200px;height:200px;}
    
    浮萍、无处依 2024-10-23 01:54:02

    我以前也遇到过同样的错误,并且没有看到任何有用的评论,所以我想我会建议一个“更好”的插件。尝试 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!

    把梦留给海 2024-10-23 01:54:02

    我赢得了无限重复


  • 只需添加样式即可
  • .jcarousel-clip {width:198px; height:130px;}
    

    I won infinite duplicating <li>
    Just add style

    .jcarousel-clip {width:198px; height:130px;}
    
    面如桃花 2024-10-23 01:54:02

    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});

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