0

The default of the video controles visibility is to be shown on hover. i want to make it visible always

I can't find any way to do it. How this can be possible from the code or css ?

Cody Gray - on strike
  • 239,200
  • 50
  • 490
  • 574
Yanshof
  • 9,659
  • 21
  • 95
  • 195

1 Answers1

3

Refer to this. I think you have the same question

Always showing video controls

Or you can use this css:

video::-webkit-media-controls-panel {
   display: flex !important;
   opacity: 1 !important;
}

It does have an answer. hopefully it helps

Urek Mazino
  • 130
  • 17