aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/api/audioscheduledsourcenode/onended/index.html
blob: 40ce8a72228127610e72c10675db9a13b71360bc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
---
title: AudioBufferSourceNode.onended
slug: Web/API/AudioScheduledSourceNode/onended
translation_of: Web/API/AudioScheduledSourceNode/onended
translation_of_original: Web/API/AudioBufferSourceNode/onended
original_slug: Web/API/AudioBufferSourceNode/onended
---
<p>{{ APIRef("AudioBufferSourceNode") }}</p>

<div><code style="font-style: normal;">AudioBufferSourceNodeの</code><span style="line-height: 1.5;"> </span><code style="font-style: normal; line-height: 1.5;">onended</code><span style="line-height: 1.5;"> イベントハンドラーは</span><span style="line-height: 1.5;">{{event("ended_(Web_Audio)", "ended")}} イベントに関するコ−ルバック関数を格納します。これによりオーディオトラックの再生終了時に実行するコードを設定することができます。</span></div>

<div class="note">
<p><strong></strong>: <code>onended</code> ハンドラーは loop プロパティーがtrueに設定されている場合はオーディオが再生終了することが無いので効果がありません。このような場合にこの機能を有効にするには {{ domxref("AudioBufferSourceNode.stop()") }} を使用してください。</p>
</div>

<h2 id="構文">構文</h2>

<pre class="brush: js;highlight[20]">var source = audioCtx.createBufferSource();
source.onended = function() { ... };
</pre>

<h2 id="用例">用例</h2>

<pre class="brush: js">source.start();
source.onended = function() {
  console.log('Your audio has finished playing');
}</pre>

<h2 id="プロパティ">プロパティ</h2>

<p>有りません。</p>

<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', '#widl-AudioBufferSourceNode-onended', 'onended')}}</td>
   <td>{{Spec2('Web Audio API')}}</td>
   <td> </td>
  </tr>
 </tbody>
</table>

<h2 id="ブラウザー互換性">ブラウザー互換性</h2>

<p>{{Compat("api.AudioScheduledSourceNode.onended")}}</p>

<h2 id="関連情報">関連情報</h2>

<ul>
 <li><a href="/en-US/docs/Web/API/Web_Audio_API/Using_Web_Audio_API">Web Audio API</a>を使う</li>
</ul>