vote up 2 vote down star

Is there any way of reliably detecting if a browser is running in full screen mode? I'm pretty sure there isn't any browser API I can query, but has anyone worked it out by inspecting and comparing certain height/width measurements exposed by the DOM? Even if it only works for certain browsers I'm interested in hearing about it.

flag

57% accept rate
1  
Why do you need to detect this? Maybe there is another solution to your problem? – Marc Jun 26 at 4:30
When the browser is in full screen mode there is no way of seeing the time reported by the operating system (e.g. in the clock in the taskbar notification area on Windows). Being able to see the current time can be important for users of our web application, so we'd like to be able to display a clock when the browser is full screened. Screen real estate is at a premium when our application is run at lower resolutions like 1024*768 so we'd like to only display the clock when the browser is full screened if at all possible. – Simon Lieschke Jun 26 at 7:45
What if they don't normally have a clock on their desktop, and also don't use their browser full-screened? Are you sure you are the one responsible for them knowing the current time? – Roger Pate Jun 26 at 8:53

5 Answers

vote up 0 vote down

If you really want to do it reliably, have you considered that max width/height in a mobile device, for example, is less than any mode a sane desktop user will probably have?

link|flag
There is a minimum supported resolution for the web application in question and hence it's not an issue in this case :) – Simon Lieschke Jun 26 at 7:37
vote up 0 vote down

The question is why do you need it?
Maybe there is another solution to your problem.

link|flag
vote up 2 vote down

What about determining the distance between the viewport width and the resolution width and likewise for height. If it is a small amount of pixels (especially for height) it may be at fullscreen.

However, this will never be reliable.

link|flag
If the browser is actually running fullscreen, the difference between the viewport size and the resolution should equal 0. Unless you're running multiple monitors, i guess. – Arve Systad Jun 26 at 4:58
Except a lot of 'full screen' implementations have a simplified chrome which may effect it. – alex Jun 26 at 5:03
Are scrollbars counted as part of the viewport? – Roger Pate Jun 26 at 5:15
I'm not sure - you'll have to experiment. – alex Jun 26 at 5:41
This was the lines I was thinking along. I could write a test page which displays all the dimensions of interest and compare the dimensions reported for the page when displayed normally and full screen. From there I might be able to determine the state for certain browsers. – Simon Lieschke Jun 26 at 7:29
show 1 more comment
vote up 3 vote down

Opera treats full screen as a different CSS media type. They call it Opera Show, and you can control it yourself easily:

@media projection {
  /* these rules only apply in full screen mode */
}

Combined with Opera@USB, I've personally found it extremely handy.

link|flag
vote up 1 vote down

What I really dislike is all of these counter-questions - "what are you trying to achieve? maybe there is another way?" etc.

People, if you know the answer or can advise, please do so. Otherwise, sit tight and wait until someone else does. Please..

And thanks to Alex who came up with a way of achieving it - not a perfect way, as he himself pointed out, but a way nonetheless.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.