I want to provide my visitors the ability to see images in high quality, is there any way I can detect the window size?
Or better yet, the viewport size of the browser with JavaScript? See green area here:
|
I want to provide my visitors the ability to see images in high quality, is there any way I can detect the window size? Or better yet, the viewport size of the browser with JavaScript? See green area here: |
||||
|
|
|
See: responsejs.com/labs/dimensions/
2013 update: The technique in verge uses feature detection to determine the best technique. This corrected approach seems to be the safest and most accurate. Re: #17 |
|||||||||||||||||
|
|
|
|||||||||||
|
|
You can use the window.innerWidth and window.innerHeight properties.
|
|||||||||||||||||
|
|
If you aren't using jQuery, it gets ugly. Here's a snippet that should work on all new browsers. The behavior is different in Quirks mode and standards mode in IE. This takes care of it.
|
|||||
|
|
There is a difference between |
|||
|
|
|
This code is from http://andylangton.co.uk/articles/javascript/get-viewport-size-javascript/
NB : to read the width, use |
|||
|
|
|
A solution that would conform to W3C standards would be to create a transparent div (for example dynamically with JavaScript), set its width and height to 100vw/100vh (Viewport units) and then get its offsetWidth and offsetHeight. After that, the element can be removed again. This will not work in older browsers because the viewport units are relatively new, but if you don't care about them but about (soon-to-be) standards instead, you could definitely go this way:
Of course, you could also set objNode.style.position = "fixed" and then use 100% as width/height - this should have the same effect and improve compatibility to some extent. Also, setting position to fixed might be a good idea in general, because otherwise the div will be invisible but consume some space, which will lead to scrollbars appearing etc. |
|||
|
|