HTML
<ul class="ul_nav">
<li ng-repeat="teams in teamArray"
style="-webkit-animation-delay: {{$index * 150}}ms">
{{teams.team_name}}
</li>
</ul>
In this section, I am able to showcase a list of teams. However, I am interested in displaying each team individually. Is there a way to implement this effect? Check out the Plunker for reference.