我有一个带有fancybox的照片库,当fancybox在标题外打开时,会出现一个like按钮。问题是那行不通。
这是我的JS:
$(".fancyboxi").fancybox({
padding: 0,
openEffect : 'none',
closeEffect : 'none',
prevEffect : 'none',
nextEffect : 'none',
closeBtn : true,
helpers: {
overlay: {
css: {'background-color': '#333'}
},
title : {
type: 'outside'
}
},
beforeShow: function () {
if (this.title) {
var titulo=this.href;
// Add tweet button
this.title += '<a href="https://twitter.com/share" class="twitter-share-button" data-count="none" data-url="http://kingpollo.it/'+ titulo + '">Tweet</a>';
// Add FaceBook like button
this.title += '<iframe src="//www.facebook.com/plugins/like.php?href=http://kingpollo.it/'+ titulo + '&layout=button_count&show_faces=true&width=500&action=like&font&colorscheme=light&height=23" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:110px; height:23px;" allowTransparency="true"></iframe>';
}
},
afterShow: function(){
twttr.widgets.load();
},
nextEffect: 'fade',
prevEffect: 'fade'
}); // fancybox});
推特按钮正常工作。为什么fb按钮没有?