gpt4 book ai didi

javascript - photoswipe - 在画廊展示期间添加图像

转载 作者:行者123 更新时间:2023-11-28 09:19:34 26 4
gpt4 key购买 nike

我知道使用 jquery 将图像添加到照片滑动列表很简单,但我不知道如何在浏览图库时更新图像列表,即不返回图像列表。我发现的另一种选择(没有jquery,因为它将图像直接添加到 photoswipe 实例)是使用下面的代码,但似乎在图库中更新列表的唯一可能性是返回到第一张图像(在继续之前)对于第一张图片,一切都是一团糟)。有没有浏览图库时刷新列表的功能?

for (i = 0; i < fileList.length; i++) { //add new image list
console.log(fileList[i]);
instance.cache.images.push(new Code.PhotoSwipe.Image.ImageClass(fileList[i], fileList[i].url, fileList[i].caption, ''));
};

最佳答案

即使图库当前打开,您也可以将图像添加到 PhotoSwipe。

这是来自 documentation 的示例(请参阅动态添加幻灯片一章)其中 pswp 是您的 PhotoSwipe 对象(new PhotoSwipe() 返回的内容)。

pswp.items.push({
src: "path/to/image.jpg",
w:1200,
h:500
});

它在 PhotoSwipe v4.1.1 中对我有用

关于javascript - photoswipe - 在画廊展示期间添加图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15204346/

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