fancybox v2 中的动态 facebook like 按钮
如何在图像标题后使用类似 fb 的按钮、tweet.G+按钮制作 fancybox v2,这是我的代码。我如何为每个图像制作不同的按钮。
$('.fancybox-buttons').fancybox({
openEffect: 'none',
closeEffect: 'none',
prevEffect: 'none',
nextEffect: 'none',
playSpeed: 2500,
arrows: false,
nextClick: true,
helpers: {
thumbs: {
width: 50,
height: 50
},
buttons: {}
},
afterLoad: function ()
{
this.title = 'Image ' + (this.index + 1) + ' of ' + this.group.length + (this.title ? ' - ' + this.title : '');
}
});