mirror of
https://github.com/xuthus83/pigallery2.git
synced 2024-11-03 21:04:03 +08:00
14 lines
373 B
HTML
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>
|
||
|
|
||
|
|