forked from Loic-Vanden-Bossche/HollyFilms
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a75d7e9
commit 7913936
Showing
10 changed files
with
79 additions
and
632 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
<div class="h-full w-full bg-black"> | ||
<div | ||
class="absolute flex flex-col aspect-[475/712] top-1/2 left-1/2 h-3/4 -translate-x-1/2 -translate-y-1/2" | ||
> | ||
<div @onNotActivated class="h-full w-full rounded-3xl overflow-hidden"> | ||
<div | ||
[ngStyle]="{ 'background-image': 'url(assets/img/illegal.gif)' }" | ||
class="bg-center h-full bg-cover" | ||
> | ||
<div | ||
class="h-full w-full flex flex-col bg-gradient-to-b from-transparent to-black/50" | ||
> | ||
<div | ||
class="mt-auto h-16 flex flex-row items-center justify-center bg-error" | ||
> | ||
<p class="font-bold text-xl text-center text-white"> | ||
👮 Le contenu n'est pas disponible 👮 | ||
</p> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
<div @onReturnToMenuButton class="h-12 mt-10 flex flex-col items-center"> | ||
<a class="h-full" routerLink="/" | ||
><button | ||
class="h-full bg-white px-3 text-lg rounded font-bold text-black" | ||
> | ||
Retourner à l'accueil | ||
</button></a | ||
> | ||
</div> | ||
</div> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
import { Component } from '@angular/core'; | ||
import { animate, style, transition, trigger } from '@angular/animations'; | ||
|
||
@Component({ | ||
selector: 'app-not-activated', | ||
templateUrl: './illegal.component.html', | ||
animations: [ | ||
trigger('onNotActivated', [ | ||
transition(':enter', [ | ||
style({ | ||
opacity: 0, | ||
transform: 'TranslateY(-100%) Scale(0.5)', | ||
}), | ||
animate( | ||
'1s ease', | ||
style({ | ||
opacity: 1, | ||
transform: 'TranslateY(0) Scale(1)', | ||
}), | ||
), | ||
]), | ||
]), | ||
trigger('onReturnToMenuButton', [ | ||
transition(':enter', [ | ||
style({ | ||
opacity: 0, | ||
transform: 'Scale(0.5)', | ||
}), | ||
animate( | ||
'1s 0.5s ease', | ||
style({ | ||
opacity: 1, | ||
transform: 'Scale(1)', | ||
}), | ||
), | ||
]), | ||
]), | ||
], | ||
}) | ||
export class IllegalComponent {} |
31 changes: 0 additions & 31 deletions
31
packages/frontend/src/app/player/play-next-media/play-next-media.component.html
This file was deleted.
Oops, something went wrong.
51 changes: 0 additions & 51 deletions
51
packages/frontend/src/app/player/play-next-media/play-next-media.component.ts
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.