今天我创建了一个主题,因为插件Fancybox 2.0(http://fancyapps.com/fancybox/)存在问题。
事实上,根据目前在fancybox中的媒体,我想设置不同类型的标题。如果我的Fancybox中有iFrame,则标题必须为“outside”。否则,如果它是其他媒体,标题必须“结束”。
$(".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 galery中。 :)
先谢谢,对不起我的英语(我是法国人):)
答案 0 :(得分:0)
您可以使用title
选项为所有元素设置over
位置为helpers
,并为 iframe将title
位置设置为outside
元素仅以$.extend()
回调方式使用jQuery的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