无论我点击什么,手动调用 Featherlight 画廊总是从第一张图片开始

Manually calling Featherlight gallery starts from first image always no matter what I click

http://jsfiddle.net/JNsu6/893/

$(".column").click(function (e) {
    e.preventDefault();
  $.featherlightGallery($(".column"));
});

你可以在这里看到。

如果我有点击事件,点击第二张图片仍然会打开第一张图片,这会触发手动调用图库。

我错过了什么吗?文档没有详细说明。

您可以使用 $currentTarget 选项指定 "first item":

$.featherlightGallery($(".column"), {$currentTarget: $('the first item, maybe this in your case?')});