blob: f52aee12b80869f5277d03dd1e92b0d72a2cb26c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
<h1>
{{scroll}}
</h1>
<div #wrapper class="carousel position-relative" style="overflow-y: scroll;" [style]="'height:'+ shownElements * height+'rem;'">
<div class="my-2" *ngFor="let item of itemsToShow; let i = index;" [style]="'height:'+ height+'rem; width: 90%; margin: auto;'">
<div class="position-absolute text-dark bg-white" [style]="calcStyle(i)">
<a class="stretched-link" (click)="clickItem">
<p class="title">{{item.name}}</p>
</a>
</div>
</div>
</div>
|