在手机上,我可以点按一次。也许像捷径一样?我正在尝试添加
ui.hideControls();
<{1>}中的,但没有“onKeyDown”事件。
答案 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;
}