我有一个画廊,在每个图像上我叠加了一些按钮。所以我想通过单击此按钮在放大查看器中弹出一次图像。我想让它显示从图像到弹出窗口的缩放/放大效果。
这是在点击实际图片时附加它的代码:
$('.image-popup-no-margins').magnificPopup({
type: 'image',
closeOnContentClick: true,
closeBtnInside: false,
fixedContentPos: true,
mainClass: 'mfp-no-margins mfp-with-zoom', // class to remove default margin from left and right side
image: {
verticalFit: true
},
zoom: {
enabled: true,
duration: 300 // don't foget to change the duration also in CSS
}
});
但我只是想这样做一次而不是事件监听器附加。就像触发器一样。
这是我的情况截图: