多页 jQuery 图片库

发布于 2024-08-07 15:03:37 字数 137 浏览 2 评论 0原文

有没有支持多页的 jQuery 画廊?我的问题是,每个页面包含不同数量的图像。我正在使用 Lightbox 2,但我看不到任何方法来配置多页画廊。我可以创建 5-6 个静态 HTML 页面,一页可以包含一个图片库,但我认为,这不是完美的解决方案。有什么建议吗?

Is there any jQuery gallery, which support multipages? My problem is, that every page contains different number of images. I'm using Lightbox 2, but i can't see any way to configure the gallery with multipages. I can create 5-6 static HTML Pages, one page can contains one image gallery, but i think, this is not the perfect solution. Any suggestions?

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

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

发布评论

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

评论(1

梦在夏天 2024-08-14 15:03:37

CmdrTallen 刚刚发布了一个 SO 发布Gallerific
它支持多页解决方案,如演示中所示。

实现起来非常简单,您只需将图像放入无序列表(UL)中(在下面的示例中,“thumbs-min”是 UL),然后执行类似的操作;

$(document).ready(function() {                              
    // Initialize Minimal Galleriffic Gallery
    $('#gallery').galleriffic('#thumbs-min', {
    imageContainerSel:      '#slideshow',
    controlsContainerSel:   '#controls'
    });
});

CmdrTallen just posted a SO post to Gallerific.
It supports multipage solution as seen in the demo.

Super simple to implement you just put your images in a Unordered List (UL) (in the example below the "thumbs-min" is the UL) and then do something like this;

$(document).ready(function() {                              
    // Initialize Minimal Galleriffic Gallery
    $('#gallery').galleriffic('#thumbs-min', {
    imageContainerSel:      '#slideshow',
    controlsContainerSel:   '#controls'
    });
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文