iAteABug_And_iLiked_it
iAteABug_And_iLiked_it

Reputation: 3795

How to implement html seamless div scroll like on this mozilla page?

I'm implementing a design similar to this https://www.mozilla.org/en-US/firefox/partners/

As for the design I have no issues there. I have all the separate pages working. I just wasn't sure about how to implement the left nav div( which I now have done with the help of SO member pointing to scrollspy).

The last thing I need is how to implement that continuous page scrolling we see there... what plugin can I use to implement it on my page. The mozilla page's scrolling looks really cool, and please note I am not worried about how to implement that phone image that keeps falling through the pages. For now I just want the smooth scrolling to get going.

Update:

Do I have to have one really long page with different colored sections ? Is there a different way to implement the cool continous scrolling ?

Thank you :0

Upvotes: 0

Views: 394

Answers (1)

inControl
inControl

Reputation: 2314

Yes you do need one long page, you could set overflow to hidden on your html which will hide the scrollbar and give a maybe better looking page. You could also add content using AJAX but I would not recommend this.

Upvotes: 1

Related Questions