Sunday 15 February 2015

Angularjs Prev and Next sliding animation -



Angularjs Prev and Next sliding animation -

i making angular app previous , next buttons. want ng-view animate different directions depending on button user clicks (prev or next). have working illustration animates view next button. how create work prev button?

http://plnkr.co/edit/3dex35iag6eqr1iiygqo?p=preview

if alter css this:

.view-animate.ng-enter { left:100%; } .view-animate.ng-enter.ng-enter-active { left:0; } .view-animate.ng-leave.ng-leave-active { left:-100%; }

to this:

.view-animate.ng-enter { left:-100%; } .view-animate.ng-enter.ng-enter-active { left:0; } .view-animate.ng-leave.ng-leave-active { left:100%; }

then animation reverses quite nicely. how do dynamically base of operations on wether user presses prev or next button?

angularjs

No comments:

Post a Comment