在fancybox的社会按钮

时间:2013-05-04 12:37:04

标签: jquery facebook wordpress fancybox social

我希望将此脚本http://jsfiddle.net/G5TC3/集成到我之前存在的FancyBox配置中(我使用Fancybox插件进行wordpress,因此我只能编辑fancybox配置的一部分)

这是我的配置:

    <script type="text/javascript">
jQuery(function(){

jQuery.fn.getTitle = function() { // Copy the title of every IMG tag and add it to its parent A so that fancybox can show titles
    var arr = jQuery("a.fancybox");
    jQuery.each(arr, function() {
        var title = jQuery(this).children("img").attr("title");
        jQuery(this).attr('title',title);
    })
}

// Supported file extensions
var thumbnails = jQuery("a:has(img)").not(".nolightbox").filter( function() { return /\.(jpe?g|png|gif|bmp)$/i.test(jQuery(this).attr('href')) });

thumbnails.addClass("fancybox").attr("rel","fancybox").getTitle();
jQuery("a.fancybox").fancybox({
    'cyclic': false,
    'autoScale': true,
    'padding': 10,
    'opacity': true,
    'speedIn': 500,
    'speedOut': 500,
    'changeSpeed': 300,
    'overlayShow': true,
    'overlayOpacity': "0.5",
    'overlayColor': "#000000",
    'titleShow': true,
    'titlePosition': 'inside',
    'enableEscapeButton': true,
    'showCloseButton': true,
    'showNavArrows': true,
    'hideOnOverlayClick': true,
    'hideOnContentClick': false,
    'width': 560,
    'height': 340,
    'transitionIn': "fade",
    'transitionOut': "fade",
    'centerOnScroll': true
});

/* I can edit this part */

})
</script>

我不懂Jaavascript所以我不知道如何整合这个脚本 谢谢你的帮助!

2 个答案:

答案 0 :(得分:1)

只需在fancybox的最后一个属性之后添加下面提到的代码,即之后 “'centerOnScroll':true”put“,”并粘贴以下代码

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'
        }
    } 

希望这有助于解决您的问题。

答案 1 :(得分:0)

定期访问http://area51.stackexchange.com/! 使用尖括号强制链接:你见过http://superuser.com吗? 要创建更好的链接,请使用Markdown:

这是a link!以及a panda的参考样式链接。 参考文献不一定是numbers

您可以向链接添加工具提示:

点击here! 这也适用于reference links