集成广告库和Colorbox

时间:2012-10-03 21:39:50

标签: colorbox

我有一个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
           }
           });
        });

如何将颜色框代码与广告库集成?

1 个答案:

答案 0 :(得分:0)

colorbox几乎相同:

$('.ad-gallery').on('click', '.ad-image', function () {
    $.colorbox({
        href: $(this).find('img').attr('src'),
        title: $(this).find('.ad-image-description').text()
    });
});