You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have several divs of class .class-name. I select them all with $('.class-name') and chain animate them using .transition(...).transition(...);
The first transition animates correctly, smoothly interpolating -- however, the second transition(...) usually "snaps" immediately to the new CSS values without interpolation. I say usually because once every 5 to 7 times the animation does work. This behaviour has been observed in both Firefox and Chrome.
The text was updated successfully, but these errors were encountered:
It changes the values instantly, without delay or animation. This also happens if the second transition is put in a callback rather than chained. I have not experienced it working correctly, even sporadically.
I have several divs of class
.class-name
. I select them all with$('.class-name')
and chain animate them using.transition(...).transition(...);
The first transition animates correctly, smoothly interpolating -- however, the second
transition(...)
usually "snaps" immediately to the new CSS values without interpolation. I say usually because once every 5 to 7 times the animation does work. This behaviour has been observed in both Firefox and Chrome.The text was updated successfully, but these errors were encountered: