I've noticed that with ngAnimate
loaded CSS transitions are "jerky" on Chrome when interrupted with another transition. That is, they seem to jump ahead to the target state, rather than start from the current value. The exact same transitions are much smoother without ngAnimate loaded, and smoother on Firefox with/without ngAnimate.
For example, a simple element that adds/removes a class on click:
<bigger-on-click-class class="{{showBigger ? 'bigger' : ''}}" ng-click="showBigger = !showBigger"></bigger-on-click-class>
animated by the CSS transition:
bigger-on-click-class {
display: block;
height: 200px;
width: 200px;
background: red;
-webkit-transition: height 5s;
transition: height 5s;
}
bigger-on-click-class.bigger {
height: 400px;
}
behaves differently on multiple clicks in quick succession, depending on whether ngAnimate
is loaded:
http://plnkr.co/edit/Fhwbd3WRiz5wHRIm10y3?p=preview without ngAnimate
http://plnkr.co/edit/WSED064MV2dtPnsEQuti?p=preview with ngAnimate
If you try clicking quickly multiple times on the red boxes in the previous examples, you should see what I mean, or click below to view a screencast.
Other than not loading ngAnimate
, is there a way to avoid this, so interrupting animations start from the currently displayed value/position?
Edit: the initial links were incorrect. Also, the jerky behaviour is observed in Chrome, but not Firefox. Edit: reframed the question to make it clearer it's a Chrome/Firefox difference