我有一個照片庫fancybox,當fancybox是在tittle外面打開看起來像一個按鈕。問題是,這是行不通的。按鈕像Facebook不敢與fancybox工作
這裏我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});
Twitter的按鈕正常工作。爲什麼FB按鈕沒有?
你能提供鏈接問題或複製問題的小提琴嗎? –
http://kingpollo.it/elaborati.php(網頁是underconstruction:P) – berti
我可以看到FB按鈕,有什麼問題? –