灯箱下一张/上一张图像不显示

发布于 2024-10-25 18:49:49 字数 155 浏览 2 评论 0原文

有一个灯箱,但上一个/下一个链接不显示。我尝试使用 z-index、删除 :hover 等,但似乎没有任何效果。我是否遗漏了一些非常明显的东西?

图片本身位于正确的位置,并且链接确实有效,如果您单击图片的右侧部分,它会将您带到下一张等,只是不会显示图片,

提前致谢

There's a lightbox but Previous/Next links do not show up. I've tried to play with z-index, removing :hover, etc., nothing seems to work. Am I missing something really obvious?

pictures itself are in the right place, and links do work, if you click at the right part of the image it takes you to the next one, etc., just pictures aren't shown

thanks in advance

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

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

发布评论

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

评论(1

巷雨优美回忆 2024-11-01 18:49:49

如果您需要上一个/下一个,则不要显示 &工作,你必须改变这个代码:

$(function() {
    $('#gallery a').lightBox();
});

到这个:

$(function() {
    $('#gallery a').each(function(indx, element){
        $(element).lightBox();
    });
}); 

如果你只需要上一个/下一个不显示,你可以使用透明图片例如。

If you need Previous/Next do not show up & work, you must change this code:

$(function() {
    $('#gallery a').lightBox();
});

to this:

$(function() {
    $('#gallery a').each(function(indx, element){
        $(element).lightBox();
    });
}); 

If you need Previous/Next only do not show up, you can use transparent picture for example.

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