how can I use autoplay for iframe & target for video

Viewed 27

I study html5. i want to make main video, and another video click - change main video if i can more, how can use autoplay for iframe? i use allow="autoplay", but it dnt work thank you for ur support

// <iframe width="200" height="200" src="ex01.mp4" name="exname01" >
</iframe>
<br>
<a href="ex02.mp4" target="exname01">
<video src="02.mp4"width="100" height="100"></a> //
1 Answers

You should add more context but here is something that could possibly work:

<video controls autoplay>
  <source src="ex01.mp4" type="video/mp4">
  Your browser does not support the video tag.
</video>
Related