javascript - FullScreenChange event not work - Stack Overflow

I try bind FullScreenChange event, but it not work. Maybe i did something wrong?$(document).bind('

I try bind FullScreenChange event, but it not work. Maybe i did something wrong?

$(document).bind('webkitfullscreenchange mozfullscreenchange fullscreenchange',function(){
if(document.fullScreen){
    console.log('Go to Full Screen mode');
    }else{
    console.log('Exit Full Screen mode');
    }
});

I try bind FullScreenChange event, but it not work. Maybe i did something wrong?

$(document).bind('webkitfullscreenchange mozfullscreenchange fullscreenchange',function(){
if(document.fullScreen){
    console.log('Go to Full Screen mode');
    }else{
    console.log('Exit Full Screen mode');
    }
});
Share Improve this question asked Jan 27, 2013 at 16:39 AleksovAleksov 1,2305 gold badges18 silver badges28 bronze badges
Add a ment  | 

2 Answers 2

Reset to default 15

You probably need to use the vendor specific prefix for the document.fullScreen property

var isFullScreen = document.fullScreen || 
                   document.mozFullScreen || 
                   document.webkitIsFullScreen;

Further information available here:

https://developer.mozilla/en-US/docs/DOM/Using_fullscreen_mode

This worked for me:

window.onresize = resize
function resize() {
  //code
}

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743575088a4473444.html

相关推荐

  • javascript - FullScreenChange event not work - Stack Overflow

    I try bind FullScreenChange event, but it not work. Maybe i did something wrong?$(document).bind('

    1天前
    10

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信