mirror of
https://github.com/zoriya/Kyoo.git
synced 2026-05-27 09:32:35 -04:00
Using images uri returned by the api
This commit is contained in:
@@ -1,8 +1,9 @@
|
||||
<div class="scroll-row mb-5">
|
||||
<div class="container" #scrollView (scroll)="onScroll()" infinite-scroll (scrolled)="this.items?.loadNext(this.client)" [horizontal]="true" [scrollWindow]="false">
|
||||
<div class="container" #scrollView (scroll)="onScroll()"
|
||||
infinite-scroll (scrolled)="this.items?.loadNext(this.client)" [horizontal]="true" [scrollWindow]="false">
|
||||
<a class="item" *ngFor="let item of this.items?.items" draggable="false"
|
||||
[routerLink]="getLink(item)" [href]="getLink(item)" #itemsDom>
|
||||
<div matRipple [style.background-image]="getThumb(item.slug)"> </div>
|
||||
<div matRipple [style.background-image]="getPoster(item)"> </div>
|
||||
<p class="title">{{item.title ? item.title : item.name}}</p>
|
||||
<p class="date">{{getDate(item)}}</p>
|
||||
</a>
|
||||
|
||||
Reference in New Issue
Block a user