8 lines
276 B
HTML
8 lines
276 B
HTML
<div class="image-container" #container>
|
|
@if (imageSrc) {
|
|
<img #image [src]="imageSrc" (load)="onImageLoad()" alt="Manga page" class="cursor-pointer" />
|
|
} @else {
|
|
<div class="h-screen flex flex-col items-center justify-center"><h1>Loading...</h1></div>
|
|
}
|
|
</div>
|