angular-material-npfixed
Version:
The Angular Material project is an implementation of Material Design in Angular.js. This project provides a set of reusable, well-tested, and accessible Material Design UI components. Angular Material is supported internally at Google by the Angular.js, M
20 lines (17 loc) • 766 B
HTML
<div ng-controller="AppCtrl as ctrl" ng-cloak>
<md-content layout="column">
<p>
Display 1000 item in a virtual-list with viewport of only 16 columns (width=50px).
<br/><br/>
This demo shows scroll and rendering performance gains when using <code>md-virtual-repeat</code>;
achieved with the dynamic reuse of rows visible in the viewport area. Developers are required to
explicitly use <code>md-virtual-repeat-container</code> as a wrapping parent container.
</p>
<md-virtual-repeat-container id="horizontal-container" md-orient-horizontal>
<div md-virtual-repeat="item in ctrl.items"
class="repeated-item" flex>
{{item}}
</div>
</md-virtual-repeat-container>
</md-content>
</div>