@Kyrax80 wrote:
Hi, an image is worth a million words:
As you can see when I search I change how the page looks and then when the search values are all deleted I then go back to the previous look. But the images are resizing and then getting small which is a very bad effect. Is there any way to fix this?
It also happens when entering the page.
The following code is what I am using:
<ion-row padding-left> <ion-col style="padding-bottom: 0;"> <ion-slides zoom="false" spaceBetween="15" slidesPerView="2.5" style="padding: 0;"> <ion-slide [class.oculto]="!oculto" *ngFor="let video of lista.videos"> <button class="boton-slider" (click)="this.navCtrl.push('VideoPlayerPage', {video: video, categoria: lista.nombre})"> <ion-thumbnail> <img [src]="video.miniatura"> </ion-thumbnail> <div *ngIf="video.visto" class="video-visto-lista"> <ion-chip color="primary"> <i class="icon-sm icon-ophthalmology" aria-hidden="true"></i> <span class="label-chip">Visto</span> </ion-chip> </div> <p class="titulo-video">{{video.titulo}}</p> </button> </ion-slide> </ion-slides> <ion-slides style="height: 0;"></ion-slides> </ion-col> </ion-row>
Can someone give me a hand? Thanks.
Posts: 1
Participants: 1