Hello,
I want to know if I'm able to use local sources from my computer, be it images, sounds, and/or videos?
I'd love to achieve a similar result to https://www.w3schools.com/howto/howto_css_fullscreen_video.asp with the video. I've tried embedding from youtube but the additional attributes I've added are not working: Loop, autoplay and controls.
update: autoplay and controls are working; loop is not.
<iframe id="myVideo"
src="https://www.youtube.com/embed/tgbNymZ7vqY?autoplay=1&loop=1&controls=0">
</iframe>
#myVideo {
position: fixed;
right: 0;
bottom: 0;
min-width: 100%;
min-height: 100%;
}
Or if you can help me achieve this goal without using a local source video.
The thing is showinfo=0 is deprecated and couldn't find a way to play around it.
Thank you.