.ng-leave {
transition: 1s linear all;
opacity: 1;
}
.ng-leave-active {
opacity: 0;
}
Accrording to above code, every time router changes route from any page(page1.html) to another page(page2.html), there will be fade animation. But, if I want to have a different leave animation for different views, how can I accomplish that?
You could add different transitions to different views by adding the animations to the view child elements rather than the view element itself.
I've just posted a tutorial with a working demo showing a couple of different transitions using ngAnimate with ui router, including a slide in/out transition that adds animations to the view child elements.
Here's the snippet from my LESS file that animates the view child elements: