갤러리아 (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());
})
}
});
예, 감사합니다! – nikoka