How can I catch event ExitFullScreen of a video ? I need to redraw the page when I exit the FullScreen of tag video.
Listen to the fullscreenchange event:
document.addEventListener("fullscreenchange", function () {
console.log(document.fullscreen);
}, false);
document.addEventListener("mozfullscreenchange", function () {
console.log(document.mozFullScreen);
}, false);
document.addEventListener("webkitfullscreenchange", function () {
console.log(document.webkitIsFullScreen);
}, false);
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With