페이지 표시 API를 사용하여 PWA가 표시되는지 확인

당신의 PWA가 언제 무대에 나타날지 알아야 합니까?현대 네트워크는 이미 덮어썼다Page Visibility API.
document.addEventListener("visibilitychange", () => {
  const state = document.visibilityState;
  if (state === "hidden") {
    // your PWA is now in the background
  }

  if (state === "visible") {
    // your PWA is now in the foreground
    refreshData();
  }
});
대부분의 문서에서는 탭을 전환할 때 이 이벤트를 트리거하는 방법에 대해 논의하지만 PWA가 전경화/배경화될 때도 이 이벤트를 트리거합니다.
https://visibility-api.netlify.app를 클릭하여 메인 화면에 추가하고 직접 시도해 보세요.

Hopefully you found this post helpful, if you have any questions you can find me .

좋은 웹페이지 즐겨찾기