我正在使用带有以下代码的fancybox
$("a[rel=Fancy" + UserId + "].Items").fancybox({ 'autoscale': 'false',
'cyclic': true,
'transitionIn': 'elastic',
'transitionOut': 'elastic',
'titlePosition': 'over',
'titleFormat': function(title, currentArray, currentIndex, currentOpts) {
return '<span id="fancybox-title-over">Image ' + (currentIndex + 1) + ' / ' + currentArray.length + (title.length ? ' ' + title : '') + '</span>';
}
});
$("a[rel=Fancy" + UserId + "].Items:first").click();
它打开了fancybox,但它开始显示第一个索引中的图像。我想在用户点击的图像上启动fancybox...
我如何在fancybox中给出索引?