You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
766 B
19 lines
766 B
<div class="imgDiaLogBox"> |
|
<div mat-dialog-title>图片详情</div> |
|
<div class="swiper-container"> |
|
<div class="swiper-wrapper"> |
|
<div class="swiper-slide previewImgBox" *ngFor="let item of allImages"> |
|
<img [attr.data-src]="item.previewImageUrl" class="swiper-lazy" [ngClass]="{'rotateA':rotationAngle==90,'rotateB':rotationAngle==180,'rotateC':rotationAngle==270}"> |
|
<div class="swiper-lazy-preloader"></div> |
|
</div> |
|
</div> |
|
|
|
<!-- 如果需要导航按钮 --> |
|
<div class="swiper-button-prev"></div> |
|
<div class="swiper-button-next"></div> |
|
</div> |
|
|
|
<div class="previewImgBottom"> |
|
<button type="button" mat-icon-button (click)='rotate()'><mat-icon>refresh</mat-icon></button> |
|
</div> |
|
</div>
|
|
|