ionicx-wechat-like-album
Version:
a album is like the wechat for ionic
16 lines (15 loc) • 607 B
HTML
<div class="container">
<div *ngFor="let item of imgs;let i =index" (tap)="selectPhoto(i)">
<div class="photo-container has-photo">
<img [src]="item" alt="">
</div>
</div>
<div *ngIf="myOpts.addable">
<div class="photo-container" *ngIf="imgs.length<9" (tap)="addPhoto()">
<svg width="100%" height="100%" version="1.1" xmlns="http://www.w3.org/2000/svg">
<line x1="15" y1="35" x2="55" y2="35" style="stroke:#ccc;stroke-width:1" />
<line x1="35" y1="15" x2="35" y2="55" style="stroke:#ccc;stroke-width:1" />
</svg>
</div>
</div>
</div>