是否可以让 Pretty Photo Js 在打开单个图像时显示图像序列?

Is it possible to make Pretty Photo Js to show sequence of images on opening a single image?

我想制作我的作品集网页来展示我的平面设计作品。每件作品都会有一张封面图片和两个以上的项目图片来展示。

那么,这是一种自定义 PrettyPhoto Js 以在单击封面图像后在幻灯片中显示所有项目图像的方法吗?

我附上图片以供参考。

提前致谢

您应该使用关系属性对它们进行分组。 查看下面的示例,我如何使用 rel="prettyPhoto[1] and next three with rel="prettyPhoto[2]"

对前两项进行分组
<li class="col-sm-4"  data-filter=".photos">
<a rel="prettyPhoto[1]" href="...">
<img class="img-responsive" src="..." alt="" title=""/>
</a>
</li>
<li class="col-sm-4"  data-filter=".photos">
  <a rel="prettyPhoto[1]" href="...">
  <img class="img-responsive" src="..." alt="" title=""/>
  </a>
</li>
<li class="col-sm-4"  data-filter=".photos">
  <a rel="prettyPhoto[2]" href="...">
  <img class="img-responsive" src="..." alt="" title=""/>
  </a>
</li>
<li class="col-sm-4"  data-filter=".photos">
  <a rel="prettyPhoto[2]" href="...">
  <img class="img-responsive" src="..." alt="" title=""/>
  </a>
</li>
<li class="col-sm-4"  data-filter=".photos">
  <a rel="prettyPhoto[2]" href="...">
  <img class="img-responsive" src="..." alt="" title=""/>
  </a>
</li>