You can use cordova plugin add cordova-plugin-device
:
html
<my-page class="ion-page show-page" [ngClass]="{'device-ios-iphonex': isIphonex}>"
typescript
if(device.model == 'iPhoneX '){
this.isIphonex = true;
}else{
this.isIphonex = false;
}