I need a solution for my application where I'm displaying information of users from an array of objects in card design. I have array size of 100 and it can grow even more. So the problem is that whenever page load it takes 3,5 seconds to render the all card components in *ngFor directive. and I want to show at least 5 cards of user in first go when user goes to that url, and remaining can load eventually as user scrolls for them. I have seen different approaches for the same as none of them fits in this criteria this is using trackBy in *ngFor but my data do not change I have array of more than 100 users. this is link for *ngFor usage may be it give you help.
<ng-container *ngFor="let user of userList">
<app-display-user
[userDetail]="user"
[sectionDivisionEnable]="sectionDivisionEnable"
[isTileView]="isTileView"
(selectUser)="onSelect($event)"
></app-display-user>
</ng-container>