pigallery2/frontend/app/gallery/lightbox/photo/photo.lightbox.gallery.component.html
2016-05-13 14:27:00 +02:00

14 lines
373 B
HTML

<div class="imgContainer" #imgContainer>
<img *ngIf="gridPhoto"
[style.width.%]="imageSize.width"
[style.height.%]="imageSize.height"
[src]="gridPhoto.getThumbnailPath()"/>
<img *ngIf="gridPhoto"
[style.width.%]="imageSize.width"
[style.height.%]="imageSize.height"
[src]="gridPhoto.getPhotoPath()"/>
</div>