我正在使用下面的jsfiddle在我的fancybox标题上添加社交按钮。我有两个问题
1)当使用href的“this.href”代码时,没有出现类似按钮,尽管它适用于jsfiddle。
2)当我使用推特分享按钮时,它共享我的网站的标题,虽然在jsfiddle上它显示标题+图像网址。是否可以显示IFRAME标题&而不是网址?(正如你在jsfiddle上看到的,我的fancybox类型是iframe)。
JSFIDDLE:http://jsfiddle.net/kmLWf/44/
$.fancybox.update();
$('.iframe').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 + '&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() {
// Render tweet button
twttr.widgets.load();
},
href:this.href,
padding:0,
type:'iframe',
scrolling : "no",
prevEffect : 'fade',
nextEffect : 'fade',
preload:true,
autoSize : false,
autoCenter: true,
fitToView : false,
loop: false,
helpers : {
overlay : {
css : {
'background' : 'rgba(0, 0, 0, 0.7)',
'overflow-y': 'hidden'
},
}
}
});
答案 0 :(得分:0)
在我的图片上添加绝对网址href解决了这个问题。