1
3

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

iPhone、iPad、Androidなどでサウンド使用中にwebブラウザを閉じると、ホーム画面にサウンドコントロールが表示され、webブラウザを閉じたままでもサウンドを再生できてしまいます。
これを避けるには visibilitychange でブラウザの状態を検知し、閉じている間はサウンドの要素を muted にするようにします。
検証:iOS 15+Safari、Android 12+Google Chrome

const sound = document.getElementById( 'sound' );

document.addEventListener( 'visibilitychange' , function() {
	if ( document.visibilityState === 'hidden' ) {
		sound.muted = true;
	} else {
		sound.muted = false;
	}
} );

visibilitychange を使えないブラウザも対象にする場合は blur などで。

参考:ブラウザがバックグラウンド回ったことを検知する - Qiita

1
3
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
1
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?