长按在 Raspberry Pi 触摸屏上不起作用

Long tap doesn't work on Raspberry Pi touchscreen

我在带触摸屏的 Raspberry Pi Electron 中的 Angular 应用程序 运行 中使用 HammerJS。我希望我的用户能够随心所欲地点击(特别是对于老年人)。 这是我的 Angular 配置:

export class HammerConfig extends HammerGestureConfig {
  options = {
    domEvents: true,
    inputClass: Hammer.MouseInput,
    touchAction: 'auto'
  };
  overrides = {
    swipe: { direction: Hammer.DIRECTION_ALL },
    tap: {
      interval: 0,
      time: 5000
    }
  };
}

根据我的理解,我应该能够点击 5 秒并仍然触发点击事件。不幸的是,什么都没有改变。 我的代码有什么问题?

我只是用 touchend 让它工作。 tap 活动对大多数人来说并不适用。 time选项对用户体验没有影响。