将Facebook / Tweet按钮添加到Fancybox2

时间:2013-05-03 13:37:13

标签: php facebook fancybox

遵循此Fiddle

$(".fancybox")
.attr('rel', 'gallery')
.fancybox({
beforeShow: function () {
    if (this.title) {
        // New line
        this.title += '<br />';

        // Add tweet button
        this.title += '<a href="https://twitter.com/share" class="twitter-share-button" data-count="none" data-url="' + this.href + '">Tweet</a> ';

        // Add FaceBook like button
        this.title += '<iframe src="//www.facebook.com/plugins/like.php?href=' + this.href + '&amp;layout=button_count&amp;show_faces=true&amp;width=500&amp;action=like&amp;font&amp;colorscheme=light&amp;height=23" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:110px; height:23px;" allowTransparency="true"></iframe>';
    }
},
afterShow: function () {
    // Render tweet button
    twttr.widgets.load();
},
helpers: {
    title: {
        type: 'inside'
    }, //<-- add a comma to separate the following option
    buttons: {} //<-- add this for buttons
},
closeBtn: false, // you will use the buttons now
arrows: false
});

我似乎无法让Facebook / Tweet按钮工作,它们根本没有出现。

作为一个额外的皱纹,fancybox代码正在从一个php文件中提取,这可能解释了为什么它不起作用,但我仍然不确定如何解决它。

将采取任何建议,希望能够使其能够在Facebook上轻松分享单个照片。

my site为什么 (不要判断!到目前为止只进行了几个小时的工作,哈哈) 只有最新的马有fancybox脚本,我正在建设的过程中我们工作:S。

0 个答案:

没有答案