我正在使用Galleria(http://galleria.io/)并动态地向画廊生成图像,有时会出现一个画廊仅包含一个图像的情况,这时我希望画廊在没有缩略图容器的情况下出现,我可以这样做吗?

任何帮助,不胜感激!

我当前用于初始化的脚本是:

Galleria.loadTheme('assets/js/galleria.classic.min.js');

// Initialize Galleria
Galleria.run('#galleria', {
  show: selectedIndex,
  showInfo: false,
  swipe: true,
  imageCrop: false,
  responsive:true,
  showCounter:true,
  thumbnails:true,
  lightbox: true,
  trueFullscreen:true,
  extend: function() {
    this.bind(Galleria.IMAGE, function() {
      $('#description').html(this.$('info-title').html());
      $('.galleria-lightbox-title').html(this.$('info-title').html());
    })
  }
});

最佳答案

尝试缩略图:$(“#galleria img”)。size()> 1

关于javascript - 如果环球免税店只有一张图片,请不要显示缩略图,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/26178235/

10-11 11:55