将Galleriffic与Lightbox集成,怎么样?

Bas*_*Bas 5 jquery image lightbox

有人知道如何将Lightbox 0.5与Galleriffic集成吗?(http://www.twospy.com/galleriffic/)

当您单击下载按钮/文本时,我希望图像在灯箱中打开.

Greatings,Bas

Tre*_*ent 2

为此,您需要在每次加载图像/标题时调用灯箱函数。您需要在画廊的 onTransitionIn 回调中执行此操作,如下所示:

...
onTransitionIn:         function() {
    $('#slideshow').fadeIn('fast');
    $('#caption').fadeIn('fast', function() {
        $('#caption a.lightbox').lightBox();
    });
},
...
Run Code Online (Sandbox Code Playgroud)

希望有帮助!