简体   繁体   中英

How to always show video player controls on html5 video player

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.

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>

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM