我正在开发一款离子应用程序。我根据设备到像素的比例在android中有启动画面。现在,启动画面之后的视图需要叠加在启动画面上。 所以我根据设备到像素比率编写了媒体查询。为此我写了媒体查询
@media screen and (-webkit-device-pixel-ratio: 2) and (orientation: portrait) {
.login-background {
background: url(images/screen_white_bg_hdpi.png) no-repeat;
background-position: center center;
background-attachment: fixed;
-webkit-background-size: 100%;
}
}
在hdpi屏幕上,这个媒体查询工作正常但是对于xhdpi,xxhdpi它无法正常工作。
还有谁可以告诉我应该如何为iOS应用做这个?