1

我希望为画廊中的每个图像添加共享按钮(Pinterest 开始),而无需进入并手动包含每个图像/条目的 URL 等。在为其他灯箱包含此功能时,有很多说明需要注意——尤其是与特定的 CMS 结合使用;我一直在查看这些说明,以及 w3 资源和其他 stackoverflow.com 条目——希望我能把一些东西放在一起。我想用分享按钮代替柜台。到目前为止,我失败了。我确实有一次尝试导致按钮显示,但是脚本没有确认图像的路径以获得成功的“图钉”。随后尝试添加“Pin It”按钮只是破坏了 Magnific。

目前,我有:

tCounter:
'<a href="//pinterest.com/pin/create/button/?url=http%3A%2F  
%2Fgeraldmurai.com&media=http%3A%2F%2Fwindow.location.href&  
description=Aloha!%20Thank%20you%20for%20Pinning!" data-pin-do="buttonPin" data-pin-  
config="none" >
<img src="//assets.pinterest.com/images/pidgets/pin_it_button.png" />
</a>'}

任何提示将非常感谢!

谢谢!

4

3 回答 3

3

添加按钮的方法有很多种,其中一种最简单:

$('.image-link').magnificPopup({
        type: 'image',
        closeBtnInside: false,
        mainClass: 'mfp-with-zoom mfp-img-mobile',

        image: {
            verticalFit: true,
            titleSrc: function(item) {

                        var caption = item.el.attr('title');

                        var pinItURL = "http://pinterest.com/pin/create/button/";

                        // Refer to http://developers.pinterest.com/pin_it/
                        pinItURL += '?url=' + 'http://dimsemenov.com/plugins/magnific-popup/';
                        pinItURL += '&media=' + item.el.attr('href');
                        pinItURL += '&description=' + caption;


                        return caption + ' &middot; <a class="pin-it" href="'+pinItURL+'" target="_blank"><img src="http://assets.pinterest.com/images/pidgets/pin_it_button.png" /></a>';
            }
        },


    gallery: {
      enabled: true 
    }, 
    callbacks: {
      open: function() {
        this.wrap.on('click.pinhandler', '.pin-it', function(e) {

          window.open(e.currentTarget.href, "intent", "scrollbars=yes,resizable=yes,toolbar=no,location=yes,width=550,height=420,left=" + (window.screen ? Math.round(screen.width / 2 - 275) : 50) + ",top=" + 100);


          return false;
        });
      },
      beforeClose: function() {
       this.wrap.off('click.pinhandler');
      }
    }

});

http://codepen.io/dimsemenov/pen/hutrb

于 2013-08-07T07:08:30.073 回答
2

不确定是否有人仍然感兴趣......虽然 Dimitry 给出的答案是正确的,但他忘了提到你必须改变一些事情:

pinItURL += '?url=' + 'http://dimsemenov.com/plugins/magnific-popup/';
pinItURL += '&media=' + item.el.attr('href');

第一行

 pinItURL += '?url=' + '***add here your own website***';

第二行我不得不再次添加我的网站名称以使所有事情都正常工作:

pinItURL += '&media=**add here the name of you website plus /**' + item.el.attr('href');

希望它可以帮助某人。谢谢德米特里;)

于 2014-05-19T11:46:15.123 回答
0

媒体 URL 应指向灯箱图片,而不是网站 URL + 图片 URL。

每个图像的完整 url 位于 attr('href') 中。

于 2014-06-13T08:05:12.340 回答