http://jsfiddle.net/JNsu6/893/
$(".column").click(function (e) {
e.preventDefault();
$.featherlightGallery($(".column"));
});
您可以在这里看到它。
如果发生点击事件,单击第二张图像仍会打开第一张图像,从而触发图库的手动调用。
我想念什么吗?文档说明不多。
答案 0 :(得分:1)
您可以使用$currentTarget
选项指定“第一项”:
$.featherlightGallery($(".column"), {$currentTarget: $('the first item, maybe this in your case?')});