使用 jCarouselLite 时,shadowbox 中的图像编号错误
我的页面上有一个包含许多图像的画廊。我正在使用 jCarouselLite 来显示所有这些图像。当我单击这些图像之一时,我想用 Shadowbox 显示它们。效果很好。问题是,由于 jCarouselLite,shadowbox 底部显示的图像数量增加了两倍。因此,我看到的不是“1 of 4”,而是“1 of 12”。 有没有办法纠正这个数字?
提前致谢
I have a gallery in my page with many images. I am using jCarouselLite for showing all these images. When I click one of these images I want to show them with the Shadowbox. It works fine. The problem is that due to jCarouselLite the amount of images shown at the bottom of shadowbox has been tripled. So instead of "1 οf 4" I see "1 of 12".
Is there a way to correct this number?
Thanks in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
它很可能与 jCarouselLite 无关,而与所有 12 个图像中的“rel”元素匹配有关。 Shadowbox 对所有 12 个图像进行分组。请提供完整代码或demo。
It most likely has nothing to do with jCarouselLite and more to do with your "rel" element matching through all 12 images. The Shadowbox is grouping all 12 images. Please provide the full code or a demo.
我猜问题是克隆元素,尝试在 jCarouselLite 之前启动shadowBox,如果这没有帮助,请更改元素分组的 jCarousel 插件(我猜应该有类似
$('[rel=' + variable + ' ]')
到$(':not(.cloned) [rel=' + variable + ']')
) 这只是第一个想法。I guess problem is cloned element, try to initiate shadowBox before jCarouselLite, if that won't help, change jCarousel plugin where elements are grouped ( i guess there should be something like
$('[rel=' + variable + ']')
to$(':not(.cloned) [rel=' + variable + ']')
) It's just first thought.