One of the major problems I am facing with creating interactive web experiences is creating animated page transitions. For instance, when a user clicks a link to go to another page on the same site, I'd rather have it load the page with AJAX and then animate the content in.
One of the major hurdles I am facing when using the history API is handling multiple history events in succession. Usually what ends up happening is the animations play in succession (which, as you can imagine, REALLY breaks the user experience).
So my question is, is there some kind of "best practice" for this sort of situation? My take on the problem is to introduce some kind of small delay (100-250ms) and wait for any history changes to "settle" before animating anything, but I'm curious if there are any other more clever ways to tackle this issue.
Cheers!