Videoタグ
1. controls autoplay
<video width="320" height="180" controls autoplay>
<source src="https://s3-ap-northeast-1.amazonaws.com/madrid-static/go/movies/test-ownd_sample3.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
2. controls
<video width="320" height="180" controls>
<source src="https://s3-ap-northeast-1.amazonaws.com/madrid-static/go/movies/test-ownd_sample3.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
3. controlsなし
<video width="320" height="180">
<source src="https://s3-ap-northeast-1.amazonaws.com/madrid-static/go/movies/test-ownd_sample3.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
他 videoタグのみ
<video controls width="320" height="180"
src="https://s3-ap-northeast-1.amazonaws.com/madrid-static/go/movies/test-ownd_sample3.mp4">
Your user agent does not support the HTML5 Video element.
</video>
0コメント