我正在尝试在离子项目中设计一张幻灯片,但一切正常,但幻灯片中的图像并未居中放置。
<ion-item style="height:45%; padding-left: 0;">
<ion-slides centeredSlides="true" zoom="true" class="image-slider" loop="true" slidesPerView="1">
<ion-slide *ngFor="let img of images">
<img style="max-width:100%; text-align: center; max-height:100%;" src="{{img}}" class="thumb-img" imageViewer/>
</ion-slide>
</ion-slides>
</ion-item>
在我的ts文件中,我有一个网址数组
images =[ 'https://pay.google.com/about/static/images/social/knowledge_graph_logo.png',
'https://connectnigeria.com/articles/wp-content/uploads/2018/05/google-apps.jpg',
'http://www.google.com/logos/doodles/2015/tu-bav-2015-5651988540817408-hp2x.jpg'
];
当我这样做的时候,我在左侧有一个空白区域,我想将图像放置在中心并与滑动ui一起
答案 0 :(得分:1)
ion-slides.image-slider {
display: flex;
justify-content: center;
align-items: center;
}
<ion-item style="height:45%; padding-left: 0;">
<ion-slides centeredSlides="true" zoom="true" class="image-slider" loop="true" slidesPerView="1">
<ion-slide *ngFor="let img of images">
<img style="max-width:100%; text-align: center; max-height:100%;" src=https://image.ibb.co/k303BL/111.jpg class="thumb-img" imageViewer/>
</ion-slide>
</ion-slides>
</ion-item>