是否有可能在桌面模式下隐藏照片中的标题?

时间:2015-06-11 06:40:12

标签: javascript photoswipe

在手机上,我可以点按一次。也许像捷径一样?我正在尝试添加

ui.hideControls();
<{1>}中的

,但没有“onKeyDown”事件。

1 个答案:

答案 0 :(得分:0)

var gallery = new PhotoSwipe(...
gallery.init();
...


// set bottom gap to 0 (default is 'auto')
gallery.options.barsSize.bottom = 0;
// add class to root element of PhotoSwipe
gallery.framework.addClass( gallery.template, 'pswp__hidden-caption');
// force size update
gallery.updateSize(true);
.pswp__hidden-caption .pswp__caption {
    display:none;
}