aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/api/audiocontext/resume/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'files/ja/web/api/audiocontext/resume/index.html')
-rw-r--r--files/ja/web/api/audiocontext/resume/index.html74
1 files changed, 74 insertions, 0 deletions
diff --git a/files/ja/web/api/audiocontext/resume/index.html b/files/ja/web/api/audiocontext/resume/index.html
new file mode 100644
index 0000000000..d6e8ac7e27
--- /dev/null
+++ b/files/ja/web/api/audiocontext/resume/index.html
@@ -0,0 +1,74 @@
+---
+title: AudioContext.resume()
+slug: Web/API/AudioContext/resume
+translation_of: Web/API/AudioContext/resume
+---
+<p>{{ APIRef("Web Audio API") }}</p>
+
+<p>{{ domxref("AudioContext") }}インターフェースの<code>resume()</code>メソッドは、一時停止されたオーディオコンテキストの時間の流れを再開します。</p>
+
+<p>{{domxref("OfflineAudioContext")}}でこのメソッドを呼ぶと<code>INVALID_STATE_ERR</code>例外が発生します。</p>
+
+<h2 id="構文">構文</h2>
+
+<pre class="brush: js">Promise&lt;&gt; baseAudioContext.resume();
+</pre>
+
+<h3 id="引数">引数</h3>
+
+<p>なし</p>
+
+<h3 id="戻り値">戻り値</h3>
+
+<p>voidで完了する{{jsxref("Promise")}}。コンテキストが既に閉じている場合、プロミスは失敗します。</p>
+
+<h2 id="例">例</h2>
+
+<p>次のスニペットは<a class="external external-icon" href="https://github.com/mdn/audiocontext-states/settings">AudioContext states デモ</a>(<a class="external external-icon" href="http://mdn.github.io/audiocontext-states/">すぐ実行</a>)から取ったものです。suspend/resumeボタンをクリックすると、{{domxref("AudioContext.state")}}を問い合わせます—もし<code>running</code>ならば、{{domxref("suspend()")}}が呼ばれます。<code>suspended</code>ならば、<code>resume()</code>が呼ばれます。両方ともプロミスに成功するとボタンのラベルが適したものに更新されます。</p>
+
+<pre class="brush: js">susresBtn.onclick = function() {
+  if(audioCtx.state === 'running') {
+    audioCtx.suspend().then(function() {
+      susresBtn.textContent = 'Resume context';
+    });
+  } else if(audioCtx.state === 'suspended') {
+    audioCtx.resume().then(function() {
+      susresBtn.textContent = 'Suspend context';
+    });
+  }
+}
+</pre>
+
+<h2 id="仕様">仕様</h2>
+
+<table class="standard-table">
+ <tbody>
+ <tr>
+ <th scope="col">Specification</th>
+ <th scope="col">Status</th>
+ <th scope="col">Comment</th>
+ </tr>
+ <tr>
+ <td>{{SpecName('Web Audio API', '#dom-baseaudiocontext-resume', 'resume()')}}</td>
+ <td>{{Spec2('Web Audio API')}}</td>
+ <td> </td>
+ </tr>
+ </tbody>
+</table>
+
+<h2 id="ブラウザ互換性">ブラウザ互換性</h2>
+
+<div>
+<div>
+
+
+<p>{{Compat("api.BaseAudioContext.resume")}}</p>
+</div>
+</div>
+
+<h2 id="参考">参考</h2>
+
+<ul>
+ <li><a href="/en-US/docs/Web_Audio_API/Using_Web_Audio_API">Using the Web Audio API</a></li>
+ <li><a href="/en-US/docs/Web/API/Web_Audio_API">Web Audio API</a></li>
+</ul>