Ionic 3 ion-list horizontal - want to show a list ion-list horizontal
You can do it in this way. This works for me.
<ion-grid>
<ion-row>
<ion-col col-33 *ngFor="let post of list">
<div class="card card-1" (click)="ondemand_details(post.product_final_categories_id)">
<img src="{{post.product_final_categories_icon}}">
<p style="font-size: 9px;">{{post.product_final_categories_name}}</p>
</div>
</ion-col>
</ion-row>
And SCSS is:
img1 {
border: 2px solid #BA55D3;
border-radius: 50%;
padding: 5px;
width: 50px;
background-color:#4B0082;
box-shadow: 1px 1px 1px 1px yellow;
}
.card {
background: #1E90FF;
border-radius: 50%;
display: inline-block;
height: 50px;
border: 1px solid #fff;
padding: 7px;
margin: 1rem;
position: relative;
width: 50px;
}
.card-1 {
box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
transition: all 0.3s cubic-bezier(.25,.8,.25,1);
}
.card-1:hover {
box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
}
You can change the code according to your needs. If you face any problem please let me Known.
Hope this will help You.
Update horizental scroll Html:
<ion-content padding>
<ion-item>
<ion-scroll scrollX style="height:100px;">
<div class="scroll-item">
<ion-col col-33 *ngFor="let post of list">
<div class="card card-1" (click)="ondemand_details(post.product_final_categories_id)">
<img src="{{post.product_final_categories_icon}}">
<p style="font-size: 9px;">{{post.product_final_categories_name}}</p>
</div>
</ion-col>
</div>
</ion-scroll>
</ion-item>
</ion-content>
Add SCSS:`
ion-scroll[scrollX] {
white-space: nowrap;
.scroll-item {
display: inline-block;
}}
I have tested it in my project, and it works fine. it will show output something like this.
I hope this will help you.