Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在构建一个基于 Photoswipe 的项目。
有没有一种方法可以创建外部调用来按需显示或隐藏工具栏?(即,如果用户定义的外部事件甚至发生)
有没有一种用于 Photoswipe 的 API?
它没有记录,但是您可以访问 PhotoSwipe UI 的内部方法。
假设gallery是你的主要对象
gallery
var gallery = new PhotoSwipe( pswpElement, PhotoSwipeUI_Default, items, options);
隐藏用户界面
gallery.ui.hideControls();
显示 UI
galleru.ui.showControls();