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

16 lines
380 B
HTML
Raw Normal View History

2016-05-01 00:33:07 +08:00
<div
2016-05-01 03:36:24 +08:00
[hidden]="!activePhoto"
2016-05-01 00:33:07 +08:00
(click)="hide()">
<div class="blackCanvas"
#blackCanvas>
</div>
<div class="lightbox"
#lightbox>
2016-05-01 03:36:24 +08:00
<div class="imgContainer">
<img #thImage [src]="getThumbnailPath()" />
<img #image [src]="getPhotoPath()" style="position:absolute;"/>
</div>
</div>
</div>