Photoswipe(手机)- 图像选择(photoswipe 打开)有时会停止工作

Photoswipe (mobile) - image selection (photoswipe open) stops working from time to time

这是在黑暗中拍摄的照片,但我在使用多图库 implementation 时遇到了 Photoswipe (v4.1.3) 问题。 2-3 次触摸和关闭后,移动设备上的触摸打开图库将停止工作。我要做的是将画廊从视图中移开,然后将其放回视图中以启用触摸打开画廊。

在 Chrome 的 DevTool 中,移动模拟器运行良好。只是当我在 iPhone 上使用 Photoswipe 时,我遇到了这个问题。

再一次,在黑暗中开枪...如果您希望我提供代码片段,我很乐意这样做。


好吧,如果以后有人看到这个,你就会明白在移动设备(真正的移动设备)上,如果你的库中有哈希,在 Photoswipe 画廊中打开图像可能是一场噩梦 URL.

例如:
https://myurl.com/#about - 噩梦
https://myurl.com/ - 好的

我通过简单地将 options 中的 history 设置为 false 解决了这个问题。而已。现在你可以花哨的只针对移动设备的历史操作,因为 history: true 用于桌面是一个很好的功能。

// stuff above

var $pswp = $('.pswp')[0],
  options = {
    index: $(this).parent('figure').index(),
    bgOpacity: 0.85,
    showHideOpacity: true,
    history: false,  // set this to false - it's true by default
  };

// stuff below