I have a list of items, inside a div, with the ng-repeat angular directive. And you need to use an automatic scrolling, similar to this DEMONSTRATION (it is, use the super-treadmill plugin of jquery). How can I do this with angular js (version 1.6)?
<div class="panel-body">
<div ng-repeat="model in collection">
<h1>{{model.name}}</h1>
<p>{{model.description}}</p>
</div>
</div>