我正在使用BlueImp GalleryDEMO)。在某些情况下,我需要锁定隐藏按钮,效果很好。但是现在我还需要隐藏鼠标并同时轻扫。

说明:用户可以向左或向右滑动,这将更改当前图片。

我还找不到负责任的活动。如何停用滑动事件并再次将其激活?那可能吗?

最佳答案

他们无意发布此功能,但是它已经存在。

var galleryContext

// initalize your gallery
blueimp.Gallery([{/* your images */}], {

  // we need the context of the gallery
  onopened: function () {
    galleryContext = this
  }

})

// now disable
galleryContext.destroyEventListeners()

// or enable
galleryContext.initEventListeners()

09-27 01:36