The loop attribute on a <video> tag specifies that the video will play repeatedly.
This will continue until stopped.
A loop attribute on a <video> element.
The video will play over and over -- until it is stopped.
<video width="320" height="240" controls loop>
<source src="/media/movie.mp4" type="video/mp4">
<source src="/media/movie.ogg" type="video/ogg">
</video>
The loop attribute specifies that the video will play repeatedly.
Once the video reaches the end, it jumps to the start and begins all over again.
<video loop>
Here is when loop support started for each browser:
Chrome
|
4.0 | Jan 2010 |
Firefox
|
11.0 | Mar 2012 |
IE/Edge
|
9.0 | Mar 2011 |
Opera
|
11.5 | Aug 2011 |
Safari
|
3.1 | Mar 2008 |
Back to <video>