I attempted to integrate animation into my app by following this specific tutorial, but for some mysterious reason, I am unable to achieve the desired results. Here is the link to the Plunker I created.
This is how I have included the ng-animate attribute:
<li ng-repeat="item in items" class="{enter:'animated bounceIn',leave:'animated bounceOut'}">{{item}}</li>
Note: My implementation utilizes animate.css.
If anyone could help identify where I may be going astray, it would be greatly appreciated. Thank you!