0

我今天做一个话题,因为插件Fancybox 2.0(http://fancyapps.com/fancybox/)有问题。

事实上,我想根据当前fancybox中的媒体设置不同类型的标题。如果我的 Fancybox 中有 iFrame,则标题必须为“外部”。否则,如果是其他媒体,标题必须是“结束”。

$(".fancybox").fancybox({openEffect: 'elastic',closeEffect: 'elastic',beforeShow: function() {
        share_buttons_fancybox = '<div class="center" style="margin-top:10px;"><div class="bouton_social"><div class="fb-like" data-href="' + $(this.element).attr('href') + '" data-width="90" data-layout="button_count" data-show-faces="false" data-send="false"></div></div><div class="bouton_social"><a href="https://twitter.com/share" data-url="' + $(this.element).attr('href') + '" class="twitter-share-button" data-via="playeronetv" data-lang="fr">Tweeter</a></div><div class="bouton_social"><div class="addthis_toolbox addthis_default_style" addthis:url="' + $(this.element).attr('href') + '"><a class="addthis_counter addthis_pill_style"></a></div><script type="text/javascript" src="//s7.addthis.com/js/300/addthis_widget.js#pubid=xa-52248d25116616ca"></script></div></div>';
        if (this.title) {
            this.title += share_buttons_fancybox;
        } else {
            this.title = share_buttons_fancybox;
        }
    },afterShow: function() {
        twttr.widgets.load();
        FB.XFBML.parse();
        addthis.toolbox();
        addthis.toolbox(".addthis_toolbox");
        addthis.counter(".addthis_counter");
    },helpers: {thumbs: {width: 80,height: 45},title: {type: 'over'}},padding: 0})

有任何想法吗 ?iFrame 和其他媒体必须在同一个 Fancybox 画廊中。:)

提前谢谢,对不起我的英语(我是法国人):)

4

1 回答 1

0

您可以使用该选项将所有元素的title位置设置为,并仅使用回调中的jQuery方法将位置设置为iframe元素:overhelperstitleoutside$.extend()afterLoad

$(".fancybox").fancybox({
    padding: 0,
    openEffect: 'elastic',
    closeEffect: 'elastic',
    helpers: {
        thumbs: {
            width: 80,
            height: 45
        },
        title: {
            type: 'over' // all media
        }
    },
    afterLoad: function () {
        if (this.type == "iframe") {
            $.extend(this, {
                helpers: {
                    title: {
                        type: 'outside' // iframe only
                    },
                    overlay: {
                        locked: false // needed to fix a bug while closing (can be true or false)
                    }
                }
            });
        }
    }
});

请注意,我overlay locked在方法中设置了选项$.extend()以在关闭 fancybox 时解决错误:

overlay: {
    locked: false 
}

没有这个,覆盖将不会关闭(click虽然需要一秒钟才能关闭)

JSFIDDLE

于 2013-11-13T02:40:04.677 回答