Is there a way to run a website in full screen in Windows?

3

Is there a way to run a website in full screen in Windows? I'm running a Webpage which is only a form and it's running on a kiosk in a shopping mall.

I want this page to display in full screen. no other things should be seen on screen except the webpage and user should not be able to close the webpage using the X button.

Just like an ATM Machine.

metal gear solid

Posted 2011-08-24T14:42:36.887

Reputation: 7 796

2I assume pressing F11 isn't an option? – None – 2011-08-24T14:43:39.030

This is a browser / operating system issue, but has nothing to do with JavaScript etc. – Felix – 2011-08-24T14:44:54.880

but many user know's the F11. I want to lock the screen and nothing should work like Alt+tab – metal gear solid – 2011-08-24T14:45:24.857

Is a windows app with a browser container an option? – None – 2011-08-24T14:46:38.593

Duplicate, perhaps? http://stackoverflow.com/questions/6279792/web-browsers-into-kiosk-mode

– None – 2011-08-24T14:48:28.687

@Tim - and when I take my mouse at top Chrome give indication to exit full screen http://min.us/mB8QqsRp3

– metal gear solid – 2011-08-24T14:49:10.647

Answers

4

Most browsers offer a kiosk mode that does exactly this. Search for example "internet explorer kiosk mode" or "chrome kiosk mode" depending on which browser you will be using.

If you can't find it, then normally the F11 makes a web page fullscreen, but it's not as good a kiosk mode (won't disable screensaver or lock from using other softwares)

user131369

Posted 2011-08-24T14:42:36.887

Reputation:

when I take my mouse at top Chrome give indication to exit full screen min.us/mB8QqsRp3 – metal gear solid – 2011-08-24T14:50:01.533

Is this using Chrome kiosk mode or simply using fullscreen mode? In Kiosk mode, I believe chrome never shows that indication. To start Chrome in kiosk mode you need to use Chrome.exe --kiosk in a command line. – None – 2011-08-24T15:21:51.237

2

Press F11 to get full screen

Griffin

Posted 2011-08-24T14:42:36.887

Reputation: 323

2Do you mean F11? – Ash Burlaczenko – 2011-08-24T14:44:32.477

Cheers, I caught the mistake too, – Griffin – 2011-08-24T14:44:59.633

Pressing F11 again though would allow the user to press the X to close the page, this wouldn't lock it down so the user couldn't close it. – None – 2011-08-24T14:46:31.867

2

I think Kiosk mode is what you would want. Check out this page: http://support.microsoft.com/kb/154780

Also do a quick Google search and you'll find more. I think you can have IE default to start in Kiosk mode.

wkm

Posted 2011-08-24T14:42:36.887

Reputation: 121

2

Try Internet Explorer's Kiosk mode

http://support.microsoft.com/kb/154780

It runs full screen with no GUI around the webpage, and less ways to easily exit.
Just run iexplore -k [website] from the run dialog.

neuropie

Posted 2011-08-24T14:42:36.887

Reputation:

1

Press F11 within your browser.

Firefox and Chrome have supported this for as long as I can remember. IE8 and IE9 do too, but I'm unsure about earlier versions.

Zachary Fogg

Posted 2011-08-24T14:42:36.887

Reputation: 11

1

window.open("mypage.html","fullscreen=yes")

NimChimpsky

Posted 2011-08-24T14:42:36.887

Reputation: 296

1

You can achieve a similar effect through JavaScript, by doing something like this:

maximizeWindow = function() {
    window.moveTo(0, 0);
    window.resizeTo(screen.availWidth, screen.availHeight);
}

It won't really be fullscreen, but it will resize the window to fullscreen dimensions.

James Johnson

Posted 2011-08-24T14:42:36.887

Reputation: