我正在尝试用photowipe替换替换magnificPopup,以在弹出窗口上显示sp gallery
这是我用于的js鳕鱼,效果很好,但我不知道如何称呼照片
jQuery(function($) {
//magnific popup
$('.btn-zoom').magnificPopup({
type: 'image',
mainClass: 'mfp-with-zoom',
zoom: {
enabled: true,
duration: 300,
easing: 'ease-in-out',
opener: function (openerElement) {
return openerElement.next('img') ? openerElement : openerElement.find('img');
}
},
gallery: {
enabled: true,
navigateByImgClick: true,
preload: [0, 1]
}
});
});
请问我该如何解决?