AudioContext
インターフェースのstate
読取専用プロパティは、現在のAudioContext
の状態を返します。
構文
var audioCtx = new AudioContext(); var myState = audioCtx.state;
値
DOMString
。取りうる値は:
suspended
: オーディオコンテキストは(AudioContext.suspend()
によって)一時停止中running
: オーディオコンテキストは通常動作中closed
: オーディオコンテキストは(AudioContext.close()
によって)閉じられた
例
次のスニペットはAudioContext states デモの一部です(すぐに実行)。AudioContext.onstatechange
ハンドラは、状態が変わるたびにコンソールにログを出力するために使われています。
audioCtx.onstatechange = function() { console.log(audioCtx.state); }
仕様
Specification | Status | Comment |
---|---|---|
Web Audio API The definition of 'state' in that specification. |
草案 |
ブラウザ互換性
Feature | Chrome | Firefox (Gecko) | Internet Explorer | Opera | Safari (WebKit) |
---|---|---|---|---|---|
Basic support | 43.0 | 40.0 (40.0) | 未サポート | ? | ? |
Feature | Android | Firefox Mobile (Gecko) | Firefox OS | IE Mobile | Opera Mobile | Safari Mobile | Chrome for Android |
---|---|---|---|---|---|---|---|
Basic support | ? | ? | ? | ? | ? | ? | ? |