2013-04-12 153 views
1

我正在構建基於Photoswipe的項目。如何顯示/隱藏PhotoSwipe工具欄

有沒有辦法根據需要創建外部調用來顯示或隱藏工具欄? (即,如果甚至發生外部事件用戶定義)

是否有一種適用於Photoswipe的API?

回答

0

它沒有記錄,但是你可以訪問PhotoSwipe UI的內部方法。

假設gallery是你的主要對象

var gallery = new PhotoSwipe(pswpElement, PhotoSwipeUI_Default, items, options); 

要隱藏UI

gallery.ui.hideControls(); 

要顯示UI

galleru.ui.showControls();