AudioContext
インターフェースのonstatechangeプロパティは、
statechange
イベントが発火した(これはオーディオコンテキストの状態が変わったとき発生します)とき呼ばれるイベントハンドラ関数を定義します。
構文
var audioCtx = new AudioContext(); audioCtx.onstatechange = function() { ... };
例
次のスニペットはAudioContext states デモの一部です(すぐに実行)。AudioContext.onstatechange
ハンドラは、状態が変わるたびにコンソールにログを出力するために使われています。
audioCtx.onstatechange = function() { console.log(audioCtx.state); }
仕様
Specification | Status | Comment |
---|---|---|
Web Audio API The definition of 'onstatechange' 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 | ? | ? | ? | ? | ? | ? | ? |