1
0
mirror of https://github.com/xuthus83/pigallery2.git synced 2024-11-03 21:04:03 +08:00
pigallery2/frontend/app/gallery/grid/grid.gallery.component.html

15 lines
415 B
HTML
Raw Normal View History

2016-06-25 20:13:06 +08:00
<div #gridContainer>
2018-05-04 07:17:08 +08:00
<app-gallery-grid-photo
2018-03-31 03:30:30 +08:00
*ngFor="let gridPhoto of photosToRender"
[routerLink]="[]"
[queryParams]="queryService.getParams(gridPhoto.photo)"
2018-03-31 03:30:30 +08:00
[gridPhoto]="gridPhoto"
[style.width.px]="gridPhoto.renderWidth"
[style.height.px]="gridPhoto.renderHeight"
[style.marginLeft.px]="IMAGE_MARGIN"
[style.marginRight.px]="IMAGE_MARGIN">
2018-05-04 07:17:08 +08:00
</app-gallery-grid-photo>
2018-03-31 03:30:30 +08:00
</div>