I am animating my ng-view in Angular with a cubic-bezier transition:
/* Animations */ .slide-animation.ng-enter, .slide-animation.ng-leave
Two alternative to solve the flickering problem (movement left/right that happens with scrollbars appearing/disappearing fast)
display scrollbars all the time.
body { overflow-y: scroll; }
This hack (info)
html { margin-left: calc(100vw - 100%); }