I need to put an animation on change value on angularjs application. Basecally, i want to slide out left the old value and the new value has to display with a slide in left.
<div class="previous" ng-click="getPreviousTrainingsWeek()" ></div>
<div class="content" ng-if="spy" >
Semaine du {{timestamp.beginning_of_week | formatDateWithoutDay}}
</div>
<div class="next" ng-click="getNextTrainingsWeek()"></div>
</div>
Thanks everyone