videoObject.autoplayは、埋め込み動画(video要素)のautoplay属性の値を取得、もしくは、設定するプロパティ。
autoplay属性には、ドキュメントに埋め込む動画ファイルを自動再生するかどうかを指定できる。
構文
取得
var $autoplay = $videoElementReference.autoplay;
戻り値
video要素のautoplay属性の値。ドキュメントに埋め込んだ動画ファイルを自動再生するかどうか。
- 自動再生するように設定してあれば、
true
を返す。 - 自動再生するように設定してなければ、
false
を返す。
設定
$videoElementReference.autoplay = boolean;
- boolean
- 自動再生するかどうかを指定。
true
:自動再生する。false
:自動再生しない。
サンプル
自動再生:
動画ファイル:
video要素のsrc属性の値:
サンプルの動作について
2014/02/01現在、Chromeでのみ動作確認。
- 「自動再生:」の右側のラジオボタンで「オン」を選択した状態で、「動画ファイル:」の右側のラジオボタンで動画ファイルを切り替えると、直ぐに再生する。「video要素のautoplay属性の値:」の右側に「true」と表示する。
- 「自動再生:」の右側のラジオボタンで「オフ」を選択した状態で、「動画ファイル:」の右側のラジオボタンで動画ファイルを切り替えても、直ぐに再生しない。「video要素のautoplay属性の値:」の右側に「false」と表示する。
- 「1」~「3」のボタンをクリックすると、動画ファイルを切り替える。「video要素のsrc属性の値:」の右横に、再生する動画ファイルのURLを表示する。
サンプルのソースコード
JavaScript
<script type="text/javascript">
function setSrc( $src ) {
var $elementReference = document.getElementById( "sample" );
$elementReference.src = $src;
var $src = $elementReference.src;
document.getElementById( "sampleOutput" ).innerHTML = $src;
}
function setAutoplay( $autoplay ) {
var $elementReference = document.getElementById( "sample" );
$elementReference.autoplay = $autoplay;
var $autoplay = $elementReference.autoplay;
document.getElementById( "sampleOutputAutoplay" ).innerHTML = $autoplay;
}
</script>
function setSrc( $src ) {
var $elementReference = document.getElementById( "sample" );
$elementReference.src = $src;
var $src = $elementReference.src;
document.getElementById( "sampleOutput" ).innerHTML = $src;
}
function setAutoplay( $autoplay ) {
var $elementReference = document.getElementById( "sample" );
$elementReference.autoplay = $autoplay;
var $autoplay = $elementReference.autoplay;
document.getElementById( "sampleOutputAutoplay" ).innerHTML = $autoplay;
}
</script>
HTML
<p id="sampleAutoplay">
自動再生:
<label><input type="radio" name="sampleAutoplay" onclick="setAutoplay(true);">オン</label>
<label><input type="radio" name="sampleAutoplay" onclick="setAutoplay(false);" checked>オフ</label>
</p>
<p id="sampleSrc">
動画ファイル:
<button onclick="setSrc('http://alphasis.info/wp-content/uploads/2014/01/javascript-dom-video-sample.mp4');">1</button>
<button onclick="setSrc('http://alphasis.info/wp-content/uploads/2014/01/javascript-dom-video-sample2.mp4');">2</button>
<button onclick="setSrc('http://alphasis.info/wp-content/uploads/2014/01/javascript-dom-video-sample3.mp4');">3</button>
</p>
<p>video要素のsrc属性の値:<span id="sampleOutput"></span></p>
<video src="http://alphasis.info/wp-content/uploads/2014/01/javascript-dom-video-sample.mp4" id="sample" controls>
<p>お使いのブラウザはvideo要素に対応していません。</p>
</video>
自動再生:
<label><input type="radio" name="sampleAutoplay" onclick="setAutoplay(true);">オン</label>
<label><input type="radio" name="sampleAutoplay" onclick="setAutoplay(false);" checked>オフ</label>
</p>
<p id="sampleSrc">
動画ファイル:
<button onclick="setSrc('http://alphasis.info/wp-content/uploads/2014/01/javascript-dom-video-sample.mp4');">1</button>
<button onclick="setSrc('http://alphasis.info/wp-content/uploads/2014/01/javascript-dom-video-sample2.mp4');">2</button>
<button onclick="setSrc('http://alphasis.info/wp-content/uploads/2014/01/javascript-dom-video-sample3.mp4');">3</button>
</p>
<p>video要素のsrc属性の値:<span id="sampleOutput"></span></p>
<video src="http://alphasis.info/wp-content/uploads/2014/01/javascript-dom-video-sample.mp4" id="sample" controls>
<p>お使いのブラウザはvideo要素に対応していません。</p>
</video>