0

I am using html video player. I want to show control bar always ..currently it shows on hover but i want it should be display always not only on hover.

Bharat Koshti
  • 81
  • 1
  • 4
  • 10

1 Answers1

-1

Include the controls attribute to the video player

<video width="320" height="240" controls>
  <source src="movie.mp4" type="video/mp4">
  <source src="movie.ogg" type="video/ogg">
Your browser does not support the video tag.
</video>

For me adding the control tag always shows the controls in Chrome. Are you using other browser like Safari?

<video width="320" height="240" controls>
  <source src="https://www.w3schools.com/html/mov_bbb.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
Mohan Yadav
  • 24
  • 1
  • 5