49 lines
1.8 KiB
HTML
49 lines
1.8 KiB
HTML
<div class="fullscreen background"></div>
|
|
<div *ngIf="song && showType" [style.font-size.px]="zoom" class="fullscreen background">
|
|
|
|
<div [class.visible]="presentationBackground==='blue'" class="bg-blue fullscreen bg-image"></div>
|
|
<div [class.visible]="presentationBackground==='green'" class="bg-green fullscreen bg-image"></div>
|
|
<div [class.visible]="presentationBackground==='leder'" class="bg-leder fullscreen bg-image"></div>
|
|
<div [class.visible]="presentationBackground==='praise'" class="bg-praise fullscreen bg-image"></div>
|
|
<div [class.visible]="presentationBackground==='bible'" class="bg-bible fullscreen bg-image"></div>
|
|
|
|
|
|
<div
|
|
[@songSwitch]="songId"
|
|
[class.blur]="songId === 'title' || songId === 'dynamicText'"
|
|
[class.hide]="songId !== 'title' && songId !== 'empty' && songId !== 'dynamicText'"
|
|
[class.no-logo]="presentationBackground!=='none'"
|
|
class="start fullscreen logo"
|
|
>
|
|
<app-logo></app-logo>
|
|
</div>
|
|
|
|
<div *ngIf="songId === 'title'" @songSwitch class="start fullscreen">
|
|
<div>{{ showType | showType }}</div>
|
|
<div class="date">{{ date | date: "dd.MM.yyyy" }}</div>
|
|
</div>
|
|
|
|
<div *ngIf="songId === 'dynamicText'" @songSwitch class="start fullscreen dynamic-text">
|
|
<div>{{ presentationDynamicCaption }}</div>
|
|
<div class="date">{{ presentationDynamicText }}</div>
|
|
</div>
|
|
|
|
<app-song-text
|
|
*ngIf="songId !== 'title' && songId !== 'empty'"
|
|
[@songSwitch]="songId"
|
|
[fullscreen]="true"
|
|
[header]="song.title"
|
|
[index]="index??0"
|
|
[showSwitch]="false"
|
|
[showComments]="false"
|
|
[text]="song.text"
|
|
chordMode="hide"
|
|
></app-song-text>
|
|
<app-legal
|
|
*ngIf="songId !== 'title' && songId !== 'empty' && songId !== 'dynamicText'"
|
|
[@songSwitch]="songId"
|
|
[config]="config$ | async"
|
|
[song]="song"
|
|
></app-legal>
|
|
</div>
|