再会。
我有这样的问题:打开fancyBox画廊时,我只需单击打开的图像(幻灯片),图像就会缩放。我需要禁用这种行为。
在文档中,建议使用clickContent
事件来自定义行为。我从文档中获取示例并通过以下方式初始化我的画廊副本:
$("[data-fancybox]").fancybox({
clickContent : function( current, event ) {
// return current.type === 'image' ? 'zoom' : false;
if (current.type === 'image') {
return false;
}
},
slideShow: false,
fullScreen: false,
thumbs: false
});
但clickContent
覆盖不起作用。我试过console.log()
clickContent
事件:
$("[data-fancybox]").fancybox({
clickContent : function( current, event ) {
// return current.type === 'image' ? 'zoom' : false;
console.log('clicking test!');
},
slideShow: false,
fullScreen: false,
thumbs: false
});
但我没有成功。
也许我在某个地方犯了一个错误。请纠正我。先感谢您!