I am using video js for player. In IOS devices the native player is not hiding.
Added webkit-playsinline
and controls='false'
in video
tag.
<video controls='false' webkit-playsinline>
Tried the below code, it is not working.
::-webkit-media-controls {
display:none !important;
}
The below code worked to hide native player controls, but the white background of the native player still remains.
::-webkit-media-control-panel {
display:none !important;
}
Please provide the solution how to hide the native control bar in IOS devices.