My list of names in the scope is pretty straightforward:
$scope.friends = [
{name:'John'},
{name:'Jessie'},
{name:'Johanna'},
{name:'Joy'},
{name:'Mary'},
{name:'Peter'},
{name:'Sebastian'},
{name:'Erika'},
{name:'Patrick'},
{name:'Samantha'}
];
I want to create a unique animation where each name transitions in one after the other, like a chain. I'm currently using ng-repeat
to display these names on the front end.
I came across an effect similar to what I am looking for in this example: http://jsfiddle.net/57uGQ/, but I want to avoid using jQuery libraries.
Is there a way to achieve this effect using the ng-animate library?
Feel free to check out the plunker: http://plnkr.co/edit/aGwEe2jlGBTvjoSsiK9p?p=preview