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

时间:2018-10-02 11:52:43

标签: featherlight.js

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

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

您可以在这里看到它。

如果发生点击事件,单击第二张图像仍会打开第一张图像,从而触发图库的手动调用。

我想念什么吗?文档说明不多。

1 个答案:

答案 0 :(得分:1)

您可以使用$currentTarget选项指定“第一项”:

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