如何知道视频是否在IE中全屏显示

时间:2013-03-28 18:22:14

标签: javascript html5 internet-explorer html5-video fullscreen

我测试了下面的JavaScript代码,以检测HTML5视频是否全屏显示。该代码在Chrome,Firefox和Opera中运行良好,但在IE中则不然。如何在Internet Explorer中使用它?我尝试了“document.msFullscreenElement”,但是没有用。

if( document.fullscreenElement || document.webkitFullscreenElement ||     document.mozFullScreenElement || document.msFullscreenElement || document.oFullscreenElement)
   mode = "FULLSCREENVIDEO";
 else
   mode = "REGULAR";

0 个答案:

没有答案