Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm trying to start each page after the homepage about 500px down, similar to this website: http://unionstationdenver.com/

You'll notice when viewing pages after the homepage, you're automatically scrolled down without notice but you can than scroll up to revel the featured slider again.

I've played with scrolledHeight but I dont think that is what I need????

Basically I have a featured section that is on top of all my content pages, but you shouldn't be able to see this section until you scroll up. Any help?

share|improve this question
you might want to look at this. stackoverflow.com/questions/8773405/… – pixelass Jan 7 '12 at 23:23
Sweet! My only concern is that you still see the animation of the scroll. So each page I click on will load the first 500px and than scroll me to the content beneath it. That will get annoying to the user. Thoughts? – Hambone Jan 26 '12 at 20:26

3 Answers

You can use .scrollIntoView() for this. It will bring a specific element into the viewport.

Example:

document.getElementById( 'bottom' ).scrollIntoView();

Demo: http://jsfiddle.net/ThinkingStiff/DG8yR/

Script:

function top() {
    document.getElementById( 'top' ).scrollIntoView();    
};

function bottom() {
    document.getElementById( 'bottom' ).scrollIntoView();
    window.setTimeout( function () { top(); }, 2000 );
};

bottom();

HTML:

<div id="top">top</div>
<div id="bottom">bottom</div>

CSS:

#top {
    border: 1px solid black;
    height: 3000px;
}

#bottom {
    border: 1px solid red;
}
share|improve this answer

You can use two different techniques to achieve this.

The first one is with javascript: set the scrollTop property of the scrollable element (e.g. document.body.scrollTop = 1000;).

The second is setting the link to point to a specific id in the page e.g.

<a href="mypage.html#sectionOne">section one</a>

Then if in your target page you'll have that ID the page will be scrolled automatically.

share|improve this answer
For your first technique, how do you get it so it's down to the position of a specific element? – Wex Jan 8 '12 at 0:29
Yes I have that about doing anchors but that is the last resort. I just can't tell how these guys did it unionstationdenver.com – Hambone Jan 26 '12 at 20:29
1  
@Wex in plain javascript you can find the position of an element inside a document like this: var topPosition = document.getElementById("myElement").offsetTop; – Luca Jan 28 '12 at 12:07
@Hambone you can see in this script link that they are using the scrollTo method of the window object. More info: scrollTo on mozilla – Luca Jan 28 '12 at 12:13
Your the f***ing man @Luca!!!!!!!!!!! I am not a javascript guy, this works! But is there something in the javascript that wont allow you to scroll back up 500px? It seems that it just automatically hides 500px and you cant scroll back up to revel what the code was suppose to hide from view. – Hambone Feb 1 '12 at 4:05

Use document.scrollTop to change the position of the document. Set the scrollTop of the document equal to the bottom of the featured section of your site

share|improve this answer
scrollTop is applicable just to a DOM element, not to the document – Luca Jan 7 '12 at 23:32
scrollTop does work on the document as its part of the DOM – Sean H Jenkins Jan 7 '12 at 23:34

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.