I currently have a div with the following content:
<div ng-style="{'left': PageMap.ColumnWrap.OverviewPanelLeft + 'px'}"></div>
Whenever I press the right key, an event is triggered to change the
PageMap.ColumnWrap.OverviewPanelLeft
value to a different number. This immediately moves the div to that position.
Instead of instantly moving to the new position, I would like to smoothly animate the transition using an animation framework that supports easing effects.
How can I achieve this?