fancyboxv2の動的なFacebookのようなボタン
画像のタイトルの後にボタン、ツイート、G+ボタンのようなfbのようなfancyboxv2を作成する方法、これは私のコードです。画像ごとに異なるようなボタンを作成する方法。
$('.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 : '');
}
});