Hide controls and disable right click on HTML5 video on Safari -
i'm working on project includes video tag. users can full screen video. i'm disabling right click following code:
document.oncontextmenu = document.body.oncontextmenu = function () { return false; };
in full screen mode, right click disabled on chrome , firefox on safari still right click menu (in full screen mode). how can solve this?
i need disable controls on in full screen mode. following code chrome , firefox not safari. suggestions please?
video::-webkit-media-controls-enclosure { display: none !important; }
Comments
Post a Comment