My goal is to display 3 li
elements initially, and after a delay of 1 second, these 3 li
items will slide up while the next set of 3 li
elements automatically appear in the div.#content
.
<div id="content">
<ul>
<li>122</li>
<li>first</li>
<li>second</li>
<li>third</li>
<li>fourth</li>
<li>fifth</li>
<li>sixth</li>
</ul>
</div>
I was able to achieve this using jquery, but I am now looking to implement it with angularJs. However, I am not very experienced with angularjs. If anyone could offer some guidance, I would greatly appreciate it. You can view the current implementation using jquery here.