jQuery 循环幻灯片停止使用 3+照片

发布于 2024-09-25 18:32:19 字数 366 浏览 3 评论 0原文

我有一个带有“上一个”和“下一个”按钮的幻灯片,可以与 3 个

  • 配合使用,但是一旦我添加第四个(或更多),下一个按钮和上一个按钮就不会显示,而且它们不起作用(即使它们是隐形的)。有什么想法吗?
  • 示例页面是: http://newsite.702wedding.com/las-vegas-wedding-packages.aspx

    使用 jQuery Colorbox 和 Cycle。

    请看一下,看看发生了什么。

    I have a slide show with Previous and Next buttons that works fine with 3 <li>'s but once I add a Fourth (or more) the next button and previous button don't show up, and they don't work (even if they were invisible). Any ideas?

    The Sample Page is:
    http://newsite.702wedding.com/las-vegas-wedding-packages.aspx

    using jQuery Colorbox and Cycle.

    Please take a look and see what happening.

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

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

    发布评论

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

    评论(1

    很快妥协 2024-10-02 18:32:19

    您的问题是这样的:

    $("#slideshow").hover(function() {
        $("ul#vig").fadeIn();
    }, function() {
        $("ul#vig").fadeOut();
    });​
    

    ul#vigz-index 设置为高于 5 的值,这与您需要它位于顶部的元素相同。我使用开发人员工具将其设置为 15,现在对我来说工作正常。

    Your problem is this:

    $("#slideshow").hover(function() {
        $("ul#vig").fadeIn();
    }, function() {
        $("ul#vig").fadeOut();
    });​
    

    Set the z-index of ul#vig to something higher than 5, which is the same as the elements you need it to be on top of. I set it to 15 with developer tools and it's working fine for me now.

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