Reputation: 544
I am using html 5 video tag in my ionic project where i has to open a video and play it. Here play, pause and controls are working properly. My requirement is how to open a video file in full screen automatically(i.e default). Here is my code
<video autoplay loop controls>
<source src="{{videoUrl}}" type="video/mp4">
</video>
Upvotes: 1
Views: 4150
Reputation: 17
<video width="100%" height="100%" autoplay>
<source src="videoUrl" type="video/mp4">
</video>
Upvotes: 0