Guest User

Untitled

a guest
Oct 17th, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.85 KB | None | 0 0
  1. <ion-row padding-left>
  2. <ion-col style="padding-bottom: 0;">
  3. <ion-slides zoom="false" style="padding: 0; ">
  4. <ion-slide [class.oculto]="!oculto" *ngFor="let video of lista.videos">
  5. <button class="boton-slider" (click)="verVideo(video, lista.nombre)">
  6. <ion-thumbnail>
  7. <img [src]="video.miniatura">
  8. </ion-thumbnail>
  9. <div *ngIf="video.visto" class="video-visto-lista">
  10. <ion-chip color="primary">
  11. <i class="icon-sm icon-ophthalmology" aria-hidden="true"></i>
  12. <span class="label-chip">Visto</span>
  13. </ion-chip>
  14. </div>
  15. <p class="titulo-video">{{video.titulo}}</p>
  16. </button>
  17. </ion-slide>
  18. </ion-slides>
  19. <ion-slides style="height: 0;"></ion-slides>
  20. </ion-col>
Add Comment
Please, Sign In to add comment