2016-04-28 04:37:07 +08:00
|
|
|
<div #gridContainer *ngIf="directory" (window:resize)="onResize()" >
|
2016-04-09 21:19:25 +08:00
|
|
|
<gallery-photo
|
2016-04-29 05:25:25 +08:00
|
|
|
*ngFor="let gridPhoto of photosToRender"
|
2016-04-09 21:19:25 +08:00
|
|
|
*ngIf="gridPhoto"
|
2016-05-01 00:01:54 +08:00
|
|
|
(click)="lightbox.show(gridPhoto.photo)"
|
2016-04-09 21:19:25 +08:00
|
|
|
[photo]="gridPhoto.photo"
|
|
|
|
[directory]="directory"
|
|
|
|
[style.width.px]="gridPhoto.renderWidth"
|
|
|
|
[style.height.px]="gridPhoto.renderHeight"
|
2016-04-28 04:37:07 +08:00
|
|
|
[style.marginLeft.px]="IMAGE_MARGIN"
|
|
|
|
[style.marginRight.px]="IMAGE_MARGIN">
|
2016-04-09 21:19:25 +08:00
|
|
|
|
|
|
|
</gallery-photo>
|
|
|
|
</div>
|