I'm having a great experience using the HTML5 video player to continuously play videos. However, I have noticed that when my mouse cursor hovers over the video, a navigation button appears at the end of the screen. I would like to either remove or hide this button, but I am unsure how to do so. Below is the HTML code for the video being used:
<video id='video-player' autoplay="autoplay" loop preload='metadata' controls>
<source src="Video/1.MP4" type="video/mp4">
</video>
Any assistance on removing the navigation bar from the end of the screen would be greatly appreciated. Thank you!