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

Popular posts from this blog

powershell Start-Process exit code -1073741502 when used with Credential from a windows service environment -

twig - Using Twigbridge in a Laravel 5.1 Package -

c# - LINQ join Entities from HashSet's, Join vs Dictionary vs HashSet performance -