Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I would like to be able to set a background on our homepage which can expand and contract with the window size whilst keeping the original images aspect ratio.... I'm guessing this will need some clever Javascript or similar.

The effect has been implemented here whereby then the window exceeds around 1500 pixels in width the background will dynamically expand.

http://www.pixelcrayons.com/

share|improve this question

2 Answers

up vote 1 down vote accepted

First the bad news: CSS doesn't (currently) allow a background image to be stretched or scaled, so it isn't as easy as it should be.

However, there are a number of ways around it. The best solution (IMHO) is to have a normal <img> tag sized to 100%, positioned absolute (or even static depending on the effect you want) and layered behind everything else using z-index.

The best thing about this option is that there's no Javascript involved.

But if you want to find out about the other solutions (that do involve Javascript), then try this link: http://css-tricks.com/how-to-resizeable-background-image/ (but note that his preferred solution in the end is the same as mine)

Hope that helps.

share|improve this answer
Thankyou very much, I did think of that but I wasn't sure how to handle the positioning. – Alexander 'Bambi' Sadler Oct 27 '10 at 11:18

There is a really great jQuery plugin available: SuperSized

Not only does it do background resize, but has lots of other options. Hope it helps!

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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