Reputation: 311
How can I catch event ExitFullScreen of a video ? I need to redraw the page when I exit the FullScreen of tag video.
Upvotes: 4
Views: 7860
Reputation: 75707
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);
Upvotes: 8