blob: a1f3d4fb2dd284a315461560ee17e87520dc24d9 (
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
|
---
title: GlobalEventHandlers.oncanplaythrough
slug: Web/API/GlobalEventHandlers/oncanplaythrough
tags:
- API
- Event Handler
- GlobalEventHandlers
- Property
- Reference
translation_of: Web/API/GlobalEventHandlers/oncanplaythrough
---
<div>{{ ApiRef("HTML DOM") }}</div>
<p><strong><code>oncanplaythrough</code></strong> は {{domxref("GlobalEventHandlers")}} ミックスインのプロパティで、{{event("canplaythrough")}} イベントを処理する{{domxref("EventHandler", "イベントハンドラー")}}です。</p>
<p><code>canplaythrough</code> イベントは、メディアを再生できるユーザーエージェントのとき、バッファリングのためにコンテンツを停止せずに、メディアを最後まで再生するのに十分なデータがロードされていると推定されるときに発生します。</p>
<h2 id="Syntax" name="Syntax">構文</h2>
<pre class="syntaxbox notranslate"><em><var>element</var></em>.oncanplaythrough = <em>handlerFunction</em>;
var <em>handlerFunction</em> = <em><var>element</var></em>.oncanplaythrough;
</pre>
<p><code>handlerFunction</code> は、<code>null</code> またはイベントハンドラーを指定する <a href="/ja/docs/Web/JavaScript/Reference/Functions">JavaScript 関数</a>のいずれかです。</p>
<h2 id="Specification" name="Specification">仕様</h2>
<table class="spectable standard-table">
<tbody>
<tr>
<th scope="col">仕様書</th>
<th scope="col">策定状況</th>
<th scope="col">コメント</th>
</tr>
<tr>
<td>{{SpecName('HTML WHATWG','#handler-oncanplaythrough','oncanplaythrough')}}</td>
<td>{{Spec2('HTML WHATWG')}}</td>
<td></td>
</tr>
</tbody>
</table>
<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザー実装状況</h2>
<p>{{Compat("api.GlobalEventHandlers.oncanplaythrough")}}</p>
<h2 id="See_also" name="See_also">関連情報</h2>
<ul>
<li>{{event("canplaythrough")}}</li>
<li><a href="/ja/docs/Web/Guide/Events/Event_handlers" title="/ja/docs/Web/Guide/DOM/Events/Event_handlers">DOM onevent ハンドラー</a></li>
</ul>
|