Мне удалось сделать это с помощью следующего кода:
$.fancybox(
[{ href: '/images/title1.png', title: 'title1'},
{ href: '/images/title2.png',title: 'title2'}],
{
'padding': 0,
'transitionIn': 'none',
'transitionOut': 'none',
'type': 'image',
'changeFade': 0,
'titlePosition': 'inside',
'titleFormat': formatTitle
});
});
function formatTitle(title, currentArray, currentIndex, currentOpts) {
return '<div></span>' + (title && title.length ? '<b>' + title + '</b>' : '') + '<br/>image ' + (currentIndex + 1) + ' of ' + currentArray.length + '</div>';
}