I'm just wondering what the best practice is for only (auto) playing a video once it's fully visible in the browser/scrolled to? Should the video be 'paused' until it's in the centre of the screen, then played. Or should the video be hidden by default and only loaded once it's needed - then played? I'm open to suggestions for this as it's nothing something I've touched on before.
Here's my markup:
<figure class="pop">
<video width="1280" height="720">
<source src="video/work/gbm/xmas-landing.mp4" type="video/mp4">
<source src="video/work/gbm/xmas-landing.ogg" type="video/ogg">
Your browser does not support the video tag.
</video>
</figure>
I don't want to display the controls but I thought it might be nice if a 'play again' is visible at the end of the video, how could I go about that? Also, is a plugin needed to make the video(s) responsive?