“So deaktivieren Sie mit der rechten Maustaste mit HTML auf Video auf Video” Code-Antworten

HTML -Video deaktivieren Sie die rechte Klick

<video oncontextmenu="return false;" id="my-video-player" width="854" height="480" controls autoplay>
  <source src="https://example.com/link-to-my-video.mp4" type="video/mp4">
</video>
Stormy Serval

So deaktivieren Sie mit der rechten Maustaste mit HTML auf Video auf Video

To disable right clicking on your video in html
<--- Add the line below to your video tag --->
oncontextmenu="return false;"
  
<-- For Example -->
  
<video id="myVideo" width="350" height="500" oncontextmenu="return false;" controls autoplay>
  <source src="video.mp4" type="video/mp4">
</video>
  
<-- You can also remove the download option by adding the line below -->
controlsList="nodownload"
  
  <-- For Example -->
    
<video id="myVideo" width="350" height="500" oncontextmenu="return false;" controlsList="nodownload" controls autoplay>
  <source src="video.mp4" type="video/mp4">
</video>
Robbott

Ähnliche Antworten wie “So deaktivieren Sie mit der rechten Maustaste mit HTML auf Video auf Video”

Fragen ähnlich wie “So deaktivieren Sie mit der rechten Maustaste mit HTML auf Video auf Video”

Weitere verwandte Antworten zu “So deaktivieren Sie mit der rechten Maustaste mit HTML auf Video auf Video” auf HTML

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen