書式
<video>〜</video>
属性
| 属性名 |
初期値 |
内 容 |
| id |
なし |
IDを指定します。 |
| class |
なし |
スタイルシートクラスを指定します。 |
| style |
なし |
スタイルシートを指定します。 |
| src |
なし |
映像のURL |
| poster |
なし |
|
| autoplay |
- |
自動再生フラグ |
| loop |
- |
繰り返し再生フラグ |
| controls |
- |
コントローラー表示フラグ |
| width |
なし |
横幅 |
| height |
なし |
縦幅 |
説明
映像を表示します。
<!DOCTYPE html>
<head>
<meta http-equiv="content-type" content="text/html;charset=shift_jis">
<title>Sample</title>
</head>
<body>
<h1>Sample</h1>
<div>
videoタグで映像が表示できます。<br>
<video src="http://upload.wikimedia.org/wikipedia/commons/d/d6/Victoria_falls.ogg" autoplay="true" loop="true"></video>
</div>
</body>
</html>