aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/shared/video/video-thumbnail.component.html
blob: a15df725ef7970f79a01c029b0a62c75a963ac76 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<a
  [routerLink]="['/videos/watch', video.uuid]" [attr.title]="video.name"
  class="video-thumbnail"
>
  <img alt="" [attr.aria-labelledby]="video.name" [attr.src]="getImageUrl()" [ngClass]="{ 'blur-filter': nsfw }" />

  <div class="video-thumbnail-overlay">{{ video.durationLabel }}</div>

  <div class="play-overlay"></div>

  <div class="progress-bar" *ngIf="video.userHistory?.currentTime">
    <div [ngStyle]="{ 'width.%': getProgressPercent() }"></div>
  </div>
</a>