2

我有一个 Ad Gallery 插件 (http://adgallery.codeplex.com/documentation),当我点击图片时,它会打开 colorbox 插件。Ad gallery 提供了这个与 Fancybox 集成的代码片段:

$(".ad-gallery").on("click", ".ad-image", function() {
     $.fancybox.open({
           href : $(this).find("img").attr("src"),
           closeBtn: false,
           closeClick : true,
           openEffect : 'elastic',
           openSpeed : 150,
           closeEffect : 'elastic',
           closeSpeed : 150,
           helpers : {
           overlay : null
           }
           });
        });

colorbox 代码应该如何与 Ad Gallery 集成?

4

1 回答 1

0

几乎colorbox是一样的:

$('.ad-gallery').on('click', '.ad-image', function () {
    $.colorbox({
        href: $(this).find('img').attr('src'),
        title: $(this).find('.ad-image-description').text()
    });
});
于 2014-09-25T15:08:03.150 回答