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.
  1. Using a modern browser, go to a project in GitHub (e.g., https://github.com/twitter/bootstrap)
  2. Click a subdirectory.

See the page-wipe effect before the subdirectory page loads? How does that work?

Update: More specifically, how does this happen perfectly and seamlessly before the next page is loaded? Can clicks be delayed? Is the next page loaded in the background?

share|improve this question
Do you mean the animation or the nice url for every slide? – Yoshi Nov 9 '11 at 15:52

2 Answers

up vote 5 down vote accepted

It uses history.pushState (part of the HTML5 history API) along with some sliding effects. See this link for a plugin + demo.

Also, just found Github's blog post on the topic!

share|improve this answer
Nice. Thank you! – a paid nerd Nov 10 '11 at 20:59

Seeing that github uses jquery, this is probably the answer you're looking for: http://api.jquery.com/category/effects/

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.