I'm trying to create a similar effect as the background shown in the website below. Would prefer HTML if possible, if not JavaScript should be fine. Thanks!

Example

link|improve this question

50% accept rate
it appears that this page uses some js to change the background-position property of body during scroll. – ArVan Dec 23 '11 at 12:49
5  
What have you tried? What do you have problems with? This is not a site to just come and ask for code. – Felix Kling Dec 23 '11 at 12:50
I tried various HTML/CSS properties, but none worked how I hoped. I'm still not to grips with JavaScript so wasn't even sure where to begin. – Kristian Matthews Dec 23 '11 at 12:53
feedback

closed as not a real question by Felix Kling, Max, graphicdivine, outis, animuson Mar 31 at 6:54

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. See the FAQ for guidance on how to improve it.

1 Answer

EDIT #2

Fiddle: http://jsfiddle.net/nkyt7/3/


EDIT

Fiddle: http://jsfiddle.net/DsRcN/2/


Have the content of your website inside a container DIV or something with overflow: auto. And give a background-image for your body element. In the container's onscroll, reposition the body's background image as needed.

CSS:

body {
  background-image: url(bg.png);
  background-position: 0px 0px;
  background-repeat: no-repeat;
}

.container { /* your site's content should be inside this container */
  overflow: auto;
}

JS:

$('.container').scroll(function() {
  $('body').css('background-position', ($(this).scrollTop() * 0.9)+'px');
});

You can fine tune the 0.9 depending on how much depth effect you want.

link|improve this answer
Thank you. This should work perfectly. I'll try this when I'm on my server. – Kristian Matthews Dec 23 '11 at 12:59
Please check the fiddle in my updated answer. – techfoobar Dec 23 '11 at 13:07
Does the entire site have to be inside a separate div? – Kristian Matthews Dec 23 '11 at 13:10
2  
Well.. Having it in a separate DIV allows us to tweak the body's background properties more easily than otherwise. If you play around the styles in the fiddle there, you may just be able to get the effect going without a separate div too. Let me see if something like that can be done. – techfoobar Dec 23 '11 at 13:12
Added a better fiddle. No content div etc. Directly operating on the body element. :) – techfoobar Dec 23 '11 at 13:26
show 1 more comment
feedback

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