【问题标题】:Changing the standard pwa installation notification更改标准 pwa 安装通知
【发布时间】:2020-03-09 13:56:47
【问题描述】:

是否可以更改 pwa 的“添加到主屏幕”通知的样式?

或者您可以将其关闭并使用您的通知组件吗? 我使用标准的 pwa 设置。

【问题讨论】:

    标签: javascript css web progressive-web-apps


    【解决方案1】:

    您可以捕获beforeinstallprompt 事件并使用它来显示自定义安装提示。

    let deferredPrompt;
    
    window.addEventListener('beforeinstallprompt', (e) => {
      // Prevent the mini-infobar from appearing on mobile
      e.preventDefault();
      // Stash the event so it can be triggered later.
      deferredPrompt = e;
      // Update UI notify the user they can install the PWA
      showInstallPromotion();
    });
    

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 2021-09-12
      • 2020-03-14
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2020-02-23
      • 1970-01-01
      相关资源
      最近更新 更多