Exécuter
❯
Exécuter le code
Ctrl+Alt+R
Enregistrer le code
Ctrl+Alt+A
Changer d'orientation
Ctrl+Alt+O
Changer de thème
Ctrl+Alt+D
<!DOCTYPE html> <html> <body> <button onclick="enableControls()" type="button">Activer les contrôles</button> <button onclick="disableControls()" type="button">Désactiver les contrôles</button> <button onclick="checkControls()" type="button">Vérifier l'état des contrôles</button><br> <video id="myVideo" width="320" height="176"> <source src="mov_bbb.mp4" type="video/mp4"> <source src="mov_bbb.ogg" type="video/ogg"> Votre navigateur ne prend pas en charge la vidéo HTML5. </video> <script> let vid = document.getElementById("myVideo"); function enableControls() { vid.controls = true; vid.load(); } function disableControls() { vid.controls = false; vid.load(); } function checkControls() { alert(vid.controls); } </script> <p>Vidéo fournie par<a href="https://www.bigbuckbunny.org/" target="_blank">Big Buck Bunny</a>.</p> </body> </html>