I have a list of Elements which I can add and delete.
<div id="container" ng-repeat="element in elements">
<button ng-click="remElement($index)">x</button>
</div>
Now as you can see in my Fiddle, when you delete an element, it goes up and disappears. I find it unpleasant how the element under the element which was deleted waits till the animation is over and then hops up. Is there a way to make the element float up smoothly instantly when the element above starts to go up?
Not sure if this is what you're looking for but I think you can easily accomplish that by adding height into the container css elements, like this:
Hope this helps.