1
我在我的初始化代码中有以下内容,这样人们可以点击图片来关闭弹出窗口。但它不起作用。有任何想法吗?magnific closeOnContentClick不起作用
$(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
});
你能告诉我完整的代码吗?谢谢 – derekcohen