gpt4 book ai didi

javascript - 如何使用图像的特定索引打开 fancybox

转载 作者:行者123 更新时间:2023-11-30 05:48:38 25 4
gpt4 key购买 nike

我正在使用带有以下代码的 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 ? ' &nbsp; ' + title : '') + '</span>';
}
});

$("a[rel=Fancy" + UserId + "].Items:first").click();

它打开 fancybox,但它开始显示第一个索引中的图像。我想在用户将点击的图像上启动 fancybox...

如何在fancybox中给出索引?

最佳答案

var hrefList = new Array;
for (var i in data) {
hrefList[i] = data[i].PATH
}
$("ul.gallery a").each(function(e){
$(this).click(function(){
$.fancybox( hrefList, {
index: e,
type: 'image'
}); //fancybox
});//click
});//each

来源:Fancybox, when I open group of images and click on next with using “start index” - it's not working normally

关于javascript - 如何使用图像的特定索引打开 fancybox,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16235737/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com