I worded my question wrong before, my intention wasn't to change the resolution of the user's browser settings. I'm mainly wanting to layout my page for the smallest common resolution size and have it zoom in to fit the resolution if the user's resolution has a higher setting. Like if the user's resolution is 800x600, my website will look just like I designed it, but if the user's resolution is 1280x800, my website will zoom in to fit that resolution without changing the layout of my website, which would make the font and size of everything bigger while keeping the same look and layout of the website. If there is a way, how can I? Thanks in advance :)
|
|
No there is not. This would be very annoying for the client. You have to have to change your site to fit the users resolution. As the comments suggest, make it responsive. If you search for responsive web design you'll find a lot of articles on ways to do it. We are sometimes limited in javascript because some things would be a security issue (this one would be more of an annoyance).
So to sum up, the reason that so many make their site fit the users resolution is because you can't change the user's resolution. |
|||||||||
|
|
You can't do that, and you shouldn't. You'll have to make your web site accommodate the user's current browser window size as best you can. You have no control over the browser window size or screen resolution and even if you did, it would be unprofessional and impolite to change these things without such a change being understood by and initiated by the user. The browser is not the computer. It is just one application among many. You don't know what the user is doing with his screen--what if he is playing a video in one corner and wants his browser window exactly where it is? What if he is visually impaired and has his browser zoomed in like crazy? I know someone who wears thick glasses, uses the on-screen screen zoom accessibility box, and still leans in to about 6 inches from the screen to be able to see anything. You would not be doing him a favor to change anything about how his browser and screen are laid out. Any website that somehow changed how my browser to fit the screen, altered my browser's resolution, or changed my monitor's resolution would:
There are video playing plugins that can maximize to full screen at user request and user request only. Doing such a thing requires a java applet. |
|||||||||||||
|
|
As others have stated in the previous answers changing the screen resolution may be a bad idea (if not simply impossible), but you can change the scale of the contents so it exactly fits your window. I wrote the piece of code below for a web application I designed for devices with exactly a 1280x800 resolution. In the end I decided to also occasionally use it on a 1080p screen, so some scaling was required to get it to fit perfectly. This is what my code below does. I am using the fullscreen API (this wrapper: http://sindresorhus.com/screenfull.js/) to make the browser go full screen via a button and this same button triggers the auto scaling at the same time. You can find a working example here: http://jsfiddle.net/QT5Nr/5/ Beware this piece of code currently requires jQuery 1.8.3 and screenfull.js, but can easily be changed to work without them. I left my comment on top intact to explain why I override the jQuery offset function. You can also test why I did that by commenting that piece of code out in the jsFiddle, then resizing the frame.
|
||||
|