Ravi arn
Ravi arn

Reputation: 544

How to make html5 video tag open fullscreen automatically

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

Answers (1)

Muhammad Awais
Muhammad Awais

Reputation: 17

 <video width="100%" height="100%" autoplay>
   <source src="videoUrl" type="video/mp4">
 </video>

Upvotes: 0

Related Questions