我正在为我的画廊使用 PhotoSwipe。单击简单的 href 链接时,我想加载图库。
我正在使用没有缩略图的独占模式,代码如下。下面的代码会在页面加载时自动触发图库。
我希望能够对其进行操作,以便仅在用户单击链接时触发。演示在 photoswipe.com 上
(function(window, PhotoSwipe){
document.addEventListener('DOMContentLoaded', function(){
var
options = {
preventHide: true,
getImageSource: function(obj){
return obj.url;
},
getImageCaption: function(obj){
return obj.caption;
}
},
instance = PhotoSwipe.attach(
[
{ url: 'images/full/001.jpg', caption: 'Image 001'},
{ url: 'images/full/002.jpg', caption: 'Image 002'},
{ url: 'images/full/003.jpg', caption: 'Image 003'},
],
options
);
instance.show(0);
}, false);
}(window, window.Code.PhotoSwipe));
单击以下内容时是否可以激活以下内容:
<a href="#" class="openGallery">Open gallery</a>
...然后终于停止它自动加载到页面上!
谢谢