The front end How to hide video playback controls in HTML5 January 5, 2024 by Shannon Newton-Mason No Comments The CSS method: video::-webkit-media-controls{ display:none ! important; } Copy the code Js method: var video=document.getElementById("video"); video.controls=false; Copy the code