0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

Webページが表示されているかを判定

Posted at

ユーザーにページが表示されているかを判定するPage Visibility APIのメモ。
主に、使用用途としては、ユーザーがページを場合に、動画や重たいアニメーションの再生を停止したい時などに使用する。
プロパティはDocument.hiddenもしくはDocument.visibilityStateがあり、イベントのDocument.onvisibilitychangeで処理する。

const video = document.getElementById('video');
document.addEventListener('visibilitychange', function () {
  console.log(document.visibilityState);
  //コンソールにはhiddenとvisibleが表示される。
  console.log(document.hidden);
  //コンソールにはtrueとfalseが表示される。

  if (document.hidden) {
    console.log('動画は一時停止します。');
    video.pause();
  } else {
    console.log('再生します。');
    video.play();
  }
});

ユーザが別のタブに切り替えたり、最小化したりすると実行する。タブを横に並べた場合、そちらにフォーカスしても、実行せず、モニターに映っているかどうかを判定している。

余談ですが、動画ってvideo.play()単体では再生できないですね。最初にユーザーに再生してもらう必要があります。

参考

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?