I have successfully inserted a video in the background using HTML5 tags:
<video autoplay="autoplay" loop="loop" id="bgvid" poster="/assets/food/home/banner.jpg" muted>
<source src="http://38.89.136.40/videos/eatwedovideo.mp4" type="video/mp4" />
</video>
Although it is functioning properly, there are times when clicking on the background causes the video to play on the screen like a normal video playback. In such cases, we are required to click "done" to make it disappear from the screen. I am seeking advice on how to keep this video strictly in the background without transitioning to full-screen play.
If you have any suggestions, I would greatly appreciate your input. Thank you!