我的初始化代码中包含以下内容,以便人们可以点击图片来关闭弹出窗口。但它没有用。有什么想法吗?
$(document).ready(function() {
$('.image-link').magnificPopup({type:'image'});
});
$('.magnifierIcon').magnificPopup({
type: 'image',
image: {
// options for image content type
closeOnContentClick: true
}
// other options
});
感谢 德里克
现在解决了:
$(document).ready(function() {
$('.image-link').magnificPopup({type:'image'});
});
$('.magnifierIcon').magnificPopup({
type: 'image',closeOnBgClick: true,closeOnContentClick:true
// other options
});
答案 0 :(得分:1)
closeOnContentClick
是一般选项,不是图片选项。因此它应该在type:image
之后,而不是在image:{}
之内。