I want to create a web page background image that fills the entire background, without distorting the image and changing it's proportions.
You can see a great implementation of this on LaunchRock's pages, and on their homepage, for example.
I saw this question on StackOverflow however if you play around with what that produces you'll see that the background image is 100% height and 100% width which means that the original proportions of the photo are not maintained and the image is stretched.
Notice in the LaunchRock example that if you resize your browser window the image grows proportionally and always fills the entire window (no matter what size window or background image they use).
If the browser window is not wide enough it crops the sides of the background image (keeping the image centered and cropping the left and right sides) and if the window is not high enough it crops the bottom part of the background image.
No matter what size the browser window is, the image height/width ratio is maintained and the entire background is filled.
I'm guess this can't be done with pure CSS, some JavaScript may be needed. Any ideas?
Thanks